aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/db/db2.php
diff options
context:
space:
mode:
authorPaul S. Owen <psotfx@users.sourceforge.net>2002-01-28 17:25:58 +0000
committerPaul S. Owen <psotfx@users.sourceforge.net>2002-01-28 17:25:58 +0000
commite46d624c6bf84b8669196e081dff5c434fd0e25a (patch)
tree57de42ac1df87cdcf1514316c915f4df307a1f90 /phpBB/db/db2.php
parent4c87b7480ec92755ccf30aaa39a2132b95693e9b (diff)
downloadforums-e46d624c6bf84b8669196e081dff5c434fd0e25a.tar
forums-e46d624c6bf84b8669196e081dff5c434fd0e25a.tar.gz
forums-e46d624c6bf84b8669196e081dff5c434fd0e25a.tar.bz2
forums-e46d624c6bf84b8669196e081dff5c434fd0e25a.tar.xz
forums-e46d624c6bf84b8669196e081dff5c434fd0e25a.zip
Fix various var not set warnings ... many thanks go to The Horta for pointing out and offering fixes for many of these
git-svn-id: file:///svn/phpbb/trunk@1997 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/db/db2.php')
-rw-r--r--phpBB/db/db2.php3
1 files changed, 2 insertions, 1 deletions
diff --git a/phpBB/db/db2.php b/phpBB/db/db2.php
index 704ae53f12..da471841c1 100644
--- a/phpBB/db/db2.php
+++ b/phpBB/db/db2.php
@@ -32,7 +32,8 @@ class sql_db
var $query_resultset;
var $query_numrows;
var $next_id;
- var $row;
+ var $row = array();
+ var $rowset = array();
var $row_index;
var $num_queries = 0;