diff options
author | chriskl | 2005-09-29 13:09:35 +0000 |
---|---|---|
committer | chriskl | 2005-09-29 13:09:35 +0000 |
commit | 3ac69ce522c4826cba7c99303098482dbad1b358 (patch) | |
tree | c4c09bf2f9250568157fbd70746d6a9c8c4cd3eb | |
parent | e48dbfe38f45cca93e789b34b4e9052262e08b72 (diff) |
Fix reference
-rw-r--r-- | browser.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/browser.php b/browser.php index 9cd7316f..24cdca4a 100644 --- a/browser.php +++ b/browser.php @@ -5,7 +5,7 @@ * if you click on a database it shows a list of database objects in that * database. * - * $Id: browser.php,v 1.42.2.1 2005/03/11 04:41:05 chriskl Exp $ + * $Id: browser.php,v 1.42.2.2 2005/09/29 13:09:35 chriskl Exp $ */ // Include application functions @@ -207,7 +207,7 @@ } } - $databases = &$data->getDatabases(); + $databases = $data->getDatabases(); while (!$databases->EOF) { // If database is selected, show folder, otherwise show document if (isset($_REQUEST['database']) && $_REQUEST['database'] == $databases->f['datname']) { |