Bugs
* Object browser fixed for databases with no schemas
* Properly detect that reports database is missing
+* Fix for alter column on PostgreSQL 7.1
+* phpPgAdmin now works without '.' in the include_path
Translations
* Spanish from Martin Marques
/**
* Manage databases within a server
*
- * $Id: all_db.php,v 1.20 2003/12/13 08:04:12 chriskl Exp $
+ * $Id: all_db.php,v 1.21 2003/12/17 09:11:32 chriskl Exp $
*/
// Include application functions
- include_once('libraries/lib.inc.php');
+ include_once('./libraries/lib.inc.php');
$action = (isset($_REQUEST['action'])) ? $_REQUEST['action'] : '';
if (!isset($msg)) $msg = '';
/**
* Bottom bar
*
- * $Id: bottombar.php,v 1.2 2003/12/10 16:03:29 chriskl Exp $
+ * $Id: bottombar.php,v 1.3 2003/12/17 09:11:32 chriskl Exp $
*/
// Include application functions (no db conn)
$_no_db_connection = true;
- include_once('libraries/lib.inc.php');
+ include_once('./libraries/lib.inc.php');
$misc->printHeader();
$misc->printBody('bottombar');
* if you click on a database it shows a list of database objects in that
* database.
*
- * $Id: browser.php,v 1.32 2003/12/16 17:17:43 soranzo Exp $
+ * $Id: browser.php,v 1.33 2003/12/17 09:11:32 chriskl Exp $
*/
// Include application functions
- include_once('libraries/lib.inc.php');
+ include_once('./libraries/lib.inc.php');
// Include tree classe
- include_once('classes/HTML_TreeMenu/TreeMenu.php');
+ include_once('./classes/HTML_TreeMenu/TreeMenu.php');
// Output header
$misc->printHeader('', "<script src=\"classes/HTML_TreeMenu/TreeMenu.js\" type=\"text/javascript\"></script>\n<script src=\"links.js\" type=\"text/javascript\"></script>");
/**
* Manage casts in a database
*
- * $Id: casts.php,v 1.4 2003/12/10 16:03:29 chriskl Exp $
+ * $Id: casts.php,v 1.5 2003/12/17 09:11:32 chriskl Exp $
*/
// Include application functions
- include_once('libraries/lib.inc.php');
+ include_once('./libraries/lib.inc.php');
$action = (isset($_REQUEST['action'])) ? $_REQUEST['action'] : '';
if (!isset($msg)) $msg = '';
/**
* Class to hold various commonly used functions
*
- * $Id: Misc.php,v 1.54 2003/12/15 08:10:50 chriskl Exp $
+ * $Id: Misc.php,v 1.55 2003/12/17 09:11:32 chriskl Exp $
*/
class Misc {
// Create a database wrapper class for easy manipulation of the
// connection.
- include_once('classes/database/' . $_type . '.php');
+ include_once('./classes/database/' . $_type . '.php');
$data = &new $_type($_connection->conn);
return $data;
/*
* Parent class of all ADODB objects.
*
- * $Id: ADODB_base.php,v 1.15 2003/12/10 16:03:30 chriskl Exp $
+ * $Id: ADODB_base.php,v 1.16 2003/12/17 09:11:32 chriskl Exp $
*/
-include_once('libraries/errorhandler.inc.php');
-include_once('libraries/adodb/adodb.inc.php');
+include_once('./libraries/errorhandler.inc.php');
+include_once('./libraries/adodb/adodb.inc.php');
class ADODB_base {
/**
* Class to represent a database connection
*
- * $Id: Connection.php,v 1.1 2003/12/10 16:03:30 chriskl Exp $
+ * $Id: Connection.php,v 1.2 2003/12/17 09:11:32 chriskl Exp $
*/
-include_once('classes/database/ADODB_base.php');
+include_once('./classes/database/ADODB_base.php');
class Connection {
* A class that implements the DB interface for Postgres
* Note: This class uses ADODB and returns RecordSets.
*
- * $Id: Postgres.php,v 1.167 2003/12/15 08:30:54 chriskl Exp $
+ * $Id: Postgres.php,v 1.168 2003/12/17 09:11:32 chriskl Exp $
*/
// @@@ THOUGHT: What about inherits? ie. use of ONLY???
-include_once('classes/database/BaseDB.php');
+include_once('./classes/database/BaseDB.php');
class Postgres extends BaseDB {
* A class that implements the DB interface for Postgres
* Note: This class uses ADODB and returns RecordSets.
*
- * $Id: Postgres71.php,v 1.48 2003/12/16 01:27:23 chriskl Exp $
+ * $Id: Postgres71.php,v 1.49 2003/12/17 09:11:32 chriskl Exp $
*/
// @@@ THOUGHT: What about inherits? ie. use of ONLY???
-include_once('classes/database/Postgres.php');
+include_once('./classes/database/Postgres.php');
class Postgres71 extends Postgres {
* A class that implements the DB interface for Postgres
* Note: This class uses ADODB and returns RecordSets.
*
- * $Id: Postgres72.php,v 1.53 2003/12/10 16:03:30 chriskl Exp $
+ * $Id: Postgres72.php,v 1.54 2003/12/17 09:11:32 chriskl Exp $
*/
-include_once('classes/database/Postgres71.php');
+include_once('./classes/database/Postgres71.php');
class Postgres72 extends Postgres71 {
* A class that implements the DB interface for Postgres
* Note: This class uses ADODB and returns RecordSets.
*
- * $Id: Postgres73.php,v 1.82 2003/12/10 16:03:30 chriskl Exp $
+ * $Id: Postgres73.php,v 1.83 2003/12/17 09:11:32 chriskl Exp $
*/
// @@@ THOUGHT: What about inherits? ie. use of ONLY???
-include_once('classes/database/Postgres72.php');
+include_once('./classes/database/Postgres72.php');
class Postgres73 extends Postgres72 {
* A class that implements the DB interface for Postgres
* Note: This class uses ADODB and returns RecordSets.
*
- * $Id: Postgres74.php,v 1.20 2003/12/10 16:03:30 chriskl Exp $
+ * $Id: Postgres74.php,v 1.21 2003/12/17 09:11:32 chriskl Exp $
*/
-include_once('classes/database/Postgres73.php');
+include_once('./classes/database/Postgres73.php');
class Postgres74 extends Postgres73 {
/**
* PostgreSQL 7.5 support
*
- * $Id: Postgres75.php,v 1.2 2003/12/10 16:03:30 chriskl Exp $
+ * $Id: Postgres75.php,v 1.3 2003/12/17 09:11:32 chriskl Exp $
*/
-include_once('classes/database/Postgres74.php');
+include_once('./classes/database/Postgres74.php');
class Postgres75 extends Postgres74 {
/**
* List constraints on a table
*
- * $Id: constraints.php,v 1.24 2003/12/15 15:42:45 chriskl Exp $
+ * $Id: constraints.php,v 1.25 2003/12/17 09:11:32 chriskl Exp $
*/
// Include application functions
- include_once('libraries/lib.inc.php');
- include_once('classes/class.select.php');
+ include_once('./libraries/lib.inc.php');
+ include_once('./classes/class.select.php');
$action = (isset($_REQUEST['action'])) ? $_REQUEST['action'] : '';
$PHP_SELF = $_SERVER['PHP_SELF'];
/**
* Manage conversions in a database
*
- * $Id: conversions.php,v 1.2 2003/12/10 16:03:29 chriskl Exp $
+ * $Id: conversions.php,v 1.3 2003/12/17 09:11:32 chriskl Exp $
*/
// Include application functions
- include_once('libraries/lib.inc.php');
+ include_once('./libraries/lib.inc.php');
$action = (isset($_REQUEST['action'])) ? $_REQUEST['action'] : '';
if (!isset($msg)) $msg = '';
/**
* Manage schemas within a database
*
- * $Id: database.php,v 1.28 2003/12/13 11:04:04 chriskl Exp $
+ * $Id: database.php,v 1.29 2003/12/17 09:11:32 chriskl Exp $
*/
// Include application functions
- include_once('libraries/lib.inc.php');
+ include_once('./libraries/lib.inc.php');
$action = (isset($_REQUEST['action'])) ? $_REQUEST['action'] : '';
if (!isset($msg)) $msg = '';
* List databases in a server
* @param $webdbServerID The ID of the current server
*
- * $Id: databases.php,v 1.4 2003/03/17 05:20:29 chriskl Exp $
+ * $Id: databases.php,v 1.5 2003/12/17 09:11:32 chriskl Exp $
*/
// Include application functions
- include_once('libraries/lib.inc.php');
+ include_once('./libraries/lib.inc.php');
$misc->printHeader($lang['strdatabases']);
$misc->printBody();
/**
* Does an export to the screen or as a download
*
- * $Id: dataexport.php,v 1.6 2003/12/10 16:03:29 chriskl Exp $
+ * $Id: dataexport.php,v 1.7 2003/12/17 09:11:32 chriskl Exp $
*/
$extensions = array(
// Include application functions
$_no_output = true;
- include_once('libraries/lib.inc.php');
+ include_once('./libraries/lib.inc.php');
if (isset($_REQUEST['query'])) $_REQUEST['query'] = trim(unserialize($_REQUEST['query']));
if (!isset($msg)) $msg = null;
// Include application functions
- include_once('libraries/lib.inc.php');
+ include_once('./libraries/lib.inc.php');
$misc->printHeader($lang['strexport']);
echo "<h2>", $misc->printVal($_REQUEST['database']), ": {$lang['strexport']}</h2>\n";
/**
* Does an export of a database to the screen or as a download
*
- * $Id: dbexport.php,v 1.2 2003/12/13 16:15:43 chriskl Exp $
+ * $Id: dbexport.php,v 1.3 2003/12/17 09:11:32 chriskl Exp $
*/
// Include application functions
$_no_output = true;
- include_once('libraries/lib.inc.php');
+ include_once('./libraries/lib.inc.php');
// Check that database dumps are enabled.
if ($conf['pg_dump_path'] !== null && $conf['pg_dump_path'] != '') {
* @param $return_desc The return link name
* @param $page The current page
*
- * $Id: display.php,v 1.33 2003/12/10 16:03:29 chriskl Exp $
+ * $Id: display.php,v 1.34 2003/12/17 09:11:32 chriskl Exp $
*/
// Include application functions
- include_once('libraries/lib.inc.php');
+ include_once('./libraries/lib.inc.php');
global $conf, $lang;
/**
* Manage domains in a database
*
- * $Id: domains.php,v 1.6 2003/12/10 16:03:29 chriskl Exp $
+ * $Id: domains.php,v 1.7 2003/12/17 09:11:32 chriskl Exp $
*/
// Include application functions
- include_once('libraries/lib.inc.php');
+ include_once('./libraries/lib.inc.php');
$action = (isset($_REQUEST['action'])) ? $_REQUEST['action'] : '';
if (!isset($msg)) $msg = '';
/**
* Manage functions in a database
*
- * $Id: functions.php,v 1.23 2003/12/10 16:03:29 chriskl Exp $
+ * $Id: functions.php,v 1.24 2003/12/17 09:11:32 chriskl Exp $
*/
// Include application functions
- include_once('libraries/lib.inc.php');
+ include_once('./libraries/lib.inc.php');
$action = (isset($_REQUEST['action'])) ? $_REQUEST['action'] : '';
if (!isset($msg)) $msg = '';
/**
* Manage groups in a database cluster
*
- * $Id: groups.php,v 1.14 2003/11/03 19:53:45 soranzo Exp $
+ * $Id: groups.php,v 1.15 2003/12/17 09:11:32 chriskl Exp $
*/
// Include application functions
- include_once('libraries/lib.inc.php');
+ include_once('./libraries/lib.inc.php');
$action = (isset($_REQUEST['action'])) ? $_REQUEST['action'] : '';
if (!isset($msg)) $msg = '';
/**
* Main access point to the app.
*
- * $Id: index.php,v 1.7 2003/05/26 11:33:22 chriskl Exp $
+ * $Id: index.php,v 1.8 2003/12/17 09:11:32 chriskl Exp $
*/
// Include application functions
- include_once('libraries/lib.inc.php');
+ include_once('./libraries/lib.inc.php');
$misc->printHeader();
?>
/**
* List indexes on a table
*
- * $Id: indexes.php,v 1.20 2003/12/10 16:03:29 chriskl Exp $
+ * $Id: indexes.php,v 1.21 2003/12/17 09:11:32 chriskl Exp $
*/
// Include application functions
- include_once('libraries/lib.inc.php');
- include_once('classes/class.select.php');
+ include_once('./libraries/lib.inc.php');
+ include_once('./classes/class.select.php');
$action = (isset($_REQUEST['action'])) ? $_REQUEST['action'] : '';
$PHP_SELF = $_SERVER['PHP_SELF'];
/**
* List extra information on a table
*
- * $Id: info.php,v 1.3 2003/12/10 16:03:29 chriskl Exp $
+ * $Id: info.php,v 1.4 2003/12/17 09:11:32 chriskl Exp $
*/
// Include application functions
- include_once('libraries/lib.inc.php');
+ include_once('./libraries/lib.inc.php');
$action = (isset($_REQUEST['action'])) ? $_REQUEST['action'] : '';
$PHP_SELF = $_SERVER['PHP_SELF'];
/**
* Intro screen
*
- * $Id: intro.php,v 1.9 2003/09/10 07:13:18 chriskl Exp $
+ * $Id: intro.php,v 1.10 2003/12/17 09:11:32 chriskl Exp $
*/
// Include application functions (no db conn)
$_no_db_connection = true;
- include_once('libraries/lib.inc.php');
+ include_once('./libraries/lib.inc.php');
$misc->printHeader();
$misc->printBody();
* This script will generate a report on the status of a language
* as compared to the master english translation.
*
- * $Id: langcheck,v 1.2 2003/09/01 03:08:12 chriskl Exp $
+ * $Id: langcheck,v 1.3 2003/12/17 09:11:32 chriskl Exp $
*/
error_reporting(E_ALL);
set_time_limit(0);
}
// Include english source file
- include('english.php');
+ include('./english.php');
$master = $lang;
$master_keys = array_keys($lang);
unset($lang);
// Include target language file
- include("{$_SERVER['argv'][1]}.php");
+ include("./{$_SERVER['argv'][1]}.php");
$slave = $lang;
$slave_keys = array_keys($lang);
/**
* Manage languages in a database
*
- * $Id: languages.php,v 1.2 2003/12/10 16:03:29 chriskl Exp $
+ * $Id: languages.php,v 1.3 2003/12/17 09:11:32 chriskl Exp $
*/
// Include application functions
- include_once('libraries/lib.inc.php');
+ include_once('./libraries/lib.inc.php');
$action = (isset($_REQUEST['action'])) ? $_REQUEST['action'] : '';
if (!isset($msg)) $msg = '';
/**
* Overrides default ADODB error handler to provide nicer error handling.
*
- * $Id: errorhandler.inc.php,v 1.13 2003/10/03 07:38:55 chriskl Exp $
+ * $Id: errorhandler.inc.php,v 1.14 2003/12/17 09:11:32 chriskl Exp $
*/
define('ADODB_ERROR_HANDLER','Error_Handler');
case 'PCONNECT':
case 'CONNECT':
$_failed = true;
- include('login.php');
+ include('./login.php');
exit;
break;
default:
/**
* Function library read in upon startup
*
- * $Id: lib.inc.php,v 1.70 2003/12/13 11:04:04 chriskl Exp $
+ * $Id: lib.inc.php,v 1.71 2003/12/17 09:11:32 chriskl Exp $
*/
// Set error reporting level to max
// Check to see if the configuration file exists, if not, explain
if (file_exists('conf/config.inc.php')) {
$conf = array();
- include('conf/config.inc.php');
+ include('./conf/config.inc.php');
}
else {
echo "Configuration error: Copy conf/config.inc.php-dist to conf/config.inc.php and edit appropriately.";
// one has not been selected yet.
if (!isset($conf['default_lang'])) $conf['default_lang'] = 'english';
$lang = array();
- include_once('lang/recoded/english.php');
+ include_once('./lang/recoded/english.php');
// Include default language over the top - we really should try to avoid this
// in the case when the user has chosen a language.
- include_once("lang/recoded/" . strtolower($conf['default_lang']) . ".php");
+ include_once("./lang/recoded/" . strtolower($conf['default_lang']) . ".php");
// Check for config file version mismatch
if (!isset($conf['version']) || $conf['base_version'] > $conf['version']) {
}
// Create Misc class references
- include_once('classes/Misc.php');
+ include_once('./classes/Misc.php');
$misc = new Misc();
// Start session (if not auto-started)
|| !isset($_SESSION['webdbServerID'])
|| !isset($_SESSION['webdbLanguage'])
|| !isset($conf['servers'][$_SESSION['webdbServerID']])) {
- include('login.php');
+ include('./login.php');
exit;
}
// If extra login check fails, back to the login screen
$_allowed = $misc->checkExtraSecurity();
if (!$_allowed) {
- include('login.php');
+ include('./login.php');
exit;
}
// Import language file
- include("lang/recoded/" . strtolower($_SESSION['webdbLanguage']) . ".php");
+ include("./lang/recoded/" . strtolower($_SESSION['webdbLanguage']) . ".php");
// Check database support is properly compiled in
if (!function_exists('pg_connect')) {
$_curr_db = $conf['servers'][$_SESSION['webdbServerID']]['defaultdb'];
// Create the connection object and make the connection
- include_once('classes/database/Connection.php');
+ include_once('./classes/database/Connection.php');
$_connection = new Connection(
$conf['servers'][$_SESSION['webdbServerID']]['host'],
$conf['servers'][$_SESSION['webdbServerID']]['port'],
/**
* Login screen
*
- * $Id: login.php,v 1.14 2003/09/30 09:33:43 soranzo Exp $
+ * $Id: login.php,v 1.15 2003/12/17 09:11:32 chriskl Exp $
*/
// This needs to be an include once to prevent lib.inc.php infinite recursive includes.
// Check to see if the configuration file exists, if not, explain
- include_once('libraries/lib.inc.php');
+ include_once('./libraries/lib.inc.php');
// Unfortunately, since sometimes lib.inc.php has been included, but we still
// need the config variables
/**
* Manage operators in a database
*
- * $Id: operators.php,v 1.8 2003/12/10 16:03:29 chriskl Exp $
+ * $Id: operators.php,v 1.9 2003/12/17 09:11:32 chriskl Exp $
*/
// Include application functions
- include_once('libraries/lib.inc.php');
+ include_once('./libraries/lib.inc.php');
$action = (isset($_REQUEST['action'])) ? $_REQUEST['action'] : '';
if (!isset($msg)) $msg = '';
/**
* Manage privileges in a database
*
- * $Id: privileges.php,v 1.20 2003/12/10 16:03:29 chriskl Exp $
+ * $Id: privileges.php,v 1.21 2003/12/17 09:11:32 chriskl Exp $
*/
// Include application functions
- include_once('libraries/lib.inc.php');
+ include_once('./libraries/lib.inc.php');
$action = (isset($_REQUEST['action'])) ? $_REQUEST['action'] : '';
if (!isset($msg)) $msg = '';
/**
* List reports in a database
*
- * $Id: reports.php,v 1.15 2003/12/15 08:30:54 chriskl Exp $
+ * $Id: reports.php,v 1.16 2003/12/17 09:11:32 chriskl Exp $
*/
// Include application functions
- include_once('libraries/lib.inc.php');
+ include_once('./libraries/lib.inc.php');
$action = (isset($_REQUEST['action'])) ? $_REQUEST['action'] : '';
$PHP_SELF = $_SERVER['PHP_SELF'];
$misc->printBody();
// Create a database accessor for the reports database
- include_once('classes/Reports.php');
+ include_once('./classes/Reports.php');
$reportsdb = new Reports($status);
if ($status != 0) {
echo "<p>{$lang['strnoreportsdb']}</p>\n";
/**
* List rules on a table
*
- * $Id: rules.php,v 1.16 2003/12/10 16:03:29 chriskl Exp $
+ * $Id: rules.php,v 1.17 2003/12/17 09:11:32 chriskl Exp $
*/
// Include application functions
- include_once('libraries/lib.inc.php');
+ include_once('./libraries/lib.inc.php');
$action = (isset($_REQUEST['action'])) ? $_REQUEST['action'] : '';
$PHP_SELF = $_SERVER['PHP_SELF'];
/**
* Display properties of a schema
*
- * $Id: schema.php,v 1.11 2003/12/10 16:07:04 chriskl Exp $
+ * $Id: schema.php,v 1.12 2003/12/17 09:11:32 chriskl Exp $
*/
// Include application functions (no db conn)
$_no_db_connection = true;
- include_once('libraries/lib.inc.php');
+ include_once('./libraries/lib.inc.php');
$action = (isset($_REQUEST['action'])) ? $_REQUEST['action'] : '';
if (!isset($msg)) $msg = '';
/**
* Manage sequences in a database
*
- * $Id: sequences.php,v 1.15 2003/12/10 16:03:29 chriskl Exp $
+ * $Id: sequences.php,v 1.16 2003/12/17 09:11:32 chriskl Exp $
*/
// Include application functions
- include_once('libraries/lib.inc.php');
+ include_once('./libraries/lib.inc.php');
$action = (isset($_REQUEST['action'])) ? $_REQUEST['action'] : '';
if (!isset($msg)) $msg = '';
* how many SQL statements have been strung together with semi-colons
* @param $query The SQL query string to execute
*
- * $Id: sql.php,v 1.13 2003/12/10 16:03:29 chriskl Exp $
+ * $Id: sql.php,v 1.14 2003/12/17 09:11:32 chriskl Exp $
*/
// Include application functions
- include_once('libraries/lib.inc.php');
+ include_once('./libraries/lib.inc.php');
$PHP_SELF = $_SERVER['PHP_SELF'];
/**
* Alternative SQL editing window
*
- * $Id: sqledit.php,v 1.9 2003/12/15 07:59:22 chriskl Exp $
+ * $Id: sqledit.php,v 1.10 2003/12/17 09:11:32 chriskl Exp $
*/
// Include application functions
- include_once('libraries/lib.inc.php');
+ include_once('./libraries/lib.inc.php');
$action = (isset($_REQUEST['action'])) ? $_REQUEST['action'] : '';
if (!isset($msg)) $msg = '';
/**
* List tables in a database
*
- * $Id: tables.php,v 1.42 2003/12/15 15:42:45 chriskl Exp $
+ * $Id: tables.php,v 1.43 2003/12/17 09:11:32 chriskl Exp $
*/
// Include application functions
- include_once('libraries/lib.inc.php');
+ include_once('./libraries/lib.inc.php');
$action = (isset($_REQUEST['action'])) ? $_REQUEST['action'] : '';
$PHP_SELF = $_SERVER['PHP_SELF'];
$_REQUEST['return_url'] = "tables.php?action=confselectrows&{$misc->href}&table={$_REQUEST['table']}";
$_REQUEST['return_desc'] = $lang['strback'];
- include('display.php');
+ include('./display.php');
exit;
}
}
/**
* List tables in a database
*
- * $Id: tblproperties.php,v 1.32 2003/12/15 15:42:45 chriskl Exp $
+ * $Id: tblproperties.php,v 1.33 2003/12/17 09:11:32 chriskl Exp $
*/
// Include application functions
- include_once('libraries/lib.inc.php');
+ include_once('./libraries/lib.inc.php');
$action = (isset($_REQUEST['action'])) ? $_REQUEST['action'] : '';
$PHP_SELF = $_SERVER['PHP_SELF'];
/**
* Top menu for phpPgAdmin
*
- * $Id: topbar.php,v 1.19 2003/12/15 07:59:22 chriskl Exp $
+ * $Id: topbar.php,v 1.20 2003/12/17 09:11:32 chriskl Exp $
*/
// Include application functions
- include_once('libraries/lib.inc.php');
+ include_once('./libraries/lib.inc.php');
$misc->printHeader();
$misc->printBody('topbar');
/**
* List triggers on a table
*
- * $Id: triggers.php,v 1.18 2003/12/15 15:42:45 chriskl Exp $
+ * $Id: triggers.php,v 1.19 2003/12/17 09:11:32 chriskl Exp $
*/
// Include application functions
- include_once('libraries/lib.inc.php');
- include_once('classes/class.select.php');
+ include_once('./libraries/lib.inc.php');
+ include_once('./classes/class.select.php');
$action = (isset($_REQUEST['action'])) ? $_REQUEST['action'] : '';
$PHP_SELF = $_SERVER['PHP_SELF'];
/**
* Manage types in a database
*
- * $Id: types.php,v 1.12 2003/12/10 16:03:29 chriskl Exp $
+ * $Id: types.php,v 1.13 2003/12/17 09:11:32 chriskl Exp $
*/
// Include application functions
- include_once('libraries/lib.inc.php');
+ include_once('./libraries/lib.inc.php');
$action = (isset($_REQUEST['action'])) ? $_REQUEST['action'] : '';
if (!isset($msg)) $msg = '';
/**
* Manage users in a database cluster
*
- * $Id: users.php,v 1.18 2003/10/06 18:10:14 soranzo Exp $
+ * $Id: users.php,v 1.19 2003/12/17 09:11:32 chriskl Exp $
*/
// Include application functions
- include_once('libraries/lib.inc.php');
+ include_once('./libraries/lib.inc.php');
$action = (isset($_REQUEST['action'])) ? $_REQUEST['action'] : '';
if (!isset($msg)) $msg = '';
/**
* Manage views in a database
*
- * $Id: views.php,v 1.25 2003/12/10 16:03:29 chriskl Exp $
+ * $Id: views.php,v 1.26 2003/12/17 09:11:32 chriskl Exp $
*/
// Include application functions
- include_once('libraries/lib.inc.php');
+ include_once('./libraries/lib.inc.php');
$action = (isset($_REQUEST['action'])) ? $_REQUEST['action'] : '';
if (!isset($msg)) $msg = '';
$_REQUEST['return_url'] = "views.php?action=confselectrows&{$misc->href}&view={$_REQUEST['view']}";
$_REQUEST['return_desc'] = $lang['strback'];
- include('display.php');
+ include('./display.php');
exit;
}
}