remove call time pass by reference as it is deprecated in PHP and is unnecessary...
authorchriskl <chriskl>
Sun, 22 Jun 2003 09:43:21 +0000 (09:43 +0000)
committerchriskl <chriskl>
Sun, 22 Jun 2003 09:43:21 +0000 (09:43 +0000)
HISTORY
browser.php

diff --git a/HISTORY b/HISTORY
index ee78e5a3f01bd7dc44df6af7b013cfcfead41ffe..b8f9ed875742e50d1521666fadeea8660f896b8c 100644 (file)
--- a/HISTORY
+++ b/HISTORY
@@ -9,6 +9,8 @@ Version 3.0-rc-2
 * Added 'defaultdb' per-connection variable
   for installations where connection to template1
   is disabled.
+* Removed uses of call time pass by reference,
+  since it is a deprecated feature of PHP. 
 
 Version 3.0-rc-1
 ----------------
index 4326f491cc3883cbbd30769195145ddaeda13ed7..9c2dafc037dbfb5f323b50e95f5452bda2681374 100644 (file)
@@ -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.12 2003/05/28 06:06:07 chriskl Exp $
+        * $Id: browser.php,v 1.13 2003/06/22 09:43:21 chriskl Exp $
         */
 
        // Include application functions
                                                                                                                        || $schemas->recordCount() == 1),
                                                                        'linkTarget' => 'detail'));
 
-                                       addNodes(&$schemanode, $querystr);
+                                       addNodes($schemanode, $querystr);
 
                                        // Add schema to database
                                        $db_node->addItem($schemanode);
                                // Construct database query string
                                $querystr = 'database=' . urlencode($databases->f[$data->dbFields['dbname']]);
                                
-                               addNodes(&$db_node, $querystr);
+                               addNodes($db_node, $querystr);
                        }
 
                        // Add node to menu