[geeklog-cvs] geeklog: Fixed compatibility with PHP 4

geeklog-cvs at lists.geeklog.net geeklog-cvs at lists.geeklog.net
Sun Feb 20 04:07:50 EST 2011


changeset 8119:b0184ec23b77
url:  http://project.geeklog.net/cgi-bin/hgwebdir.cgi/geeklog/rev/b0184ec23b77
user: Dirk Haun <dirk at haun-online.de>
date: Sun Feb 20 09:36:11 2011 +0100
description:
Fixed compatibility with PHP 4

diffstat:

 system/databases/pgsql.class.php |  20 ++++++++++----------
 1 files changed, 10 insertions(+), 10 deletions(-)

diffs (57 lines):

diff -r 4fc8c3832df4 -r b0184ec23b77 system/databases/pgsql.class.php
--- a/system/databases/pgsql.class.php	Sun Feb 20 09:24:33 2011 +0100
+++ b/system/databases/pgsql.class.php	Sun Feb 20 09:36:11 2011 +0100
@@ -43,43 +43,43 @@
     /**
     * @access private
     */
-    private $_host = '';
+    var $_host = '';
     /**
     * @access private
     */
-    private $_name = '';
+    var $_name = '';
     /**
     * @access private
     */
-    private $_user = '';
+    var $_user = '';
     /**
     * @access private
     */
-    private $_pass = '';
+    var $_pass = '';
     /**
     * @access private
     */
-    private $_db = '';
+    var $_db = '';
     /**
     * @access private
     */
-    private $_verbose = false;
+    var $_verbose = false;
     /**
     * @access private
     */
-    private $_display_error = false;
+    var $_display_error = false;
     /**
     * @access private
     */
-    private $_errorlog_fn = '';
+    var $_errorlog_fn = '';
     /**
     * @access private
     */
-    private $_charset = '';
+    var $_charset = '';
     /**
     * @access private
     */
-    private $_pgsql_version = 0;
+    var $_pgsql_version = 0;
 
     // PRIVATE METHODS
 



More information about the geeklog-cvs mailing list