aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes/acm/acm_file.php
diff options
context:
space:
mode:
authorLudovic Arnaud <ludovic_arnaud@users.sourceforge.net>2003-09-03 21:53:41 +0000
committerLudovic Arnaud <ludovic_arnaud@users.sourceforge.net>2003-09-03 21:53:41 +0000
commitfef9d2d08a04b88a0989d12aaa14b86fef994d0c (patch)
tree966ef5d582e71bd72281c1343c45af50687dc609 /phpBB/includes/acm/acm_file.php
parent7ea3d109da71699ac90b13ce41c99643359d801e (diff)
downloadforums-fef9d2d08a04b88a0989d12aaa14b86fef994d0c.tar
forums-fef9d2d08a04b88a0989d12aaa14b86fef994d0c.tar.gz
forums-fef9d2d08a04b88a0989d12aaa14b86fef994d0c.tar.bz2
forums-fef9d2d08a04b88a0989d12aaa14b86fef994d0c.tar.xz
forums-fef9d2d08a04b88a0989d12aaa14b86fef994d0c.zip
Changed: headers, and a couple of clean-ups
git-svn-id: file:///svn/phpbb/trunk@4464 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/includes/acm/acm_file.php')
-rw-r--r--phpBB/includes/acm/acm_file.php33
1 files changed, 13 insertions, 20 deletions
diff --git a/phpBB/includes/acm/acm_file.php b/phpBB/includes/acm/acm_file.php
index e778000a37..3f209bdf40 100644
--- a/phpBB/includes/acm/acm_file.php
+++ b/phpBB/includes/acm/acm_file.php
@@ -1,23 +1,15 @@
<?php
-/***************************************************************************
- * acm_file.php
- * -------------------
- * begin : Saturday, Feb 13, 2001
- * copyright : (C) 2001 The phpBB Group
- * email : support@phpbb.com
- *
- * $Id$
- *
- ***************************************************************************/
-
-/***************************************************************************
- *
- * This program is free software; you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation; either version 2 of the License, or
- * (at your option) any later version.
- *
- ***************************************************************************/
+// -------------------------------------------------------------
+//
+// $Id$
+//
+// FILENAME : acm_file.php
+// STARTED : Sat Feb 13, 2001
+// COPYRIGHT : © 2003 phpBB Group
+// WWW : http://www.phpbb.com/
+// LICENCE : GPL vs2.0 [ see /docs/COPYING ]
+//
+// -------------------------------------------------------------
class acm
{
@@ -209,7 +201,8 @@ class acm
include($this->cache_dir . 'sql_' . md5($query) . '.' . $phpEx);
$query_id = 'Cache id #' . count($this->sql_rowset);
- $this->sql_rowset[$query_id] = $rowset;
+
+ $this->sql_rowset[$query_id] =& $rowset;
return $query_id;
}