[pLog-svn] r3114 - plog/trunk/class/gallery/dao

mark at devel.lifetype.net mark at devel.lifetype.net
Fri Mar 24 04:20:16 GMT 2006


Author: mark
Date: 2006-03-24 04:20:16 +0000 (Fri, 24 Mar 2006)
New Revision: 3114

Modified:
   plog/trunk/class/gallery/dao/galleryresource.class.php
Log:
Fix a reference error in PHP 5.

Modified: plog/trunk/class/gallery/dao/galleryresource.class.php
===================================================================
--- plog/trunk/class/gallery/dao/galleryresource.class.php	2006-03-24 04:06:42 UTC (rev 3113)
+++ plog/trunk/class/gallery/dao/galleryresource.class.php	2006-03-24 04:20:16 UTC (rev 3114)
@@ -251,7 +251,7 @@
 		 * @return a buffer of bytes from the file or false if empty or error
 		 * @private
 		 */
-		function &_getDataChunk(&$filedesc,$chunkSize)
+		function _getDataChunk(&$filedesc,$chunkSize)
 		{
 			if (feof($filedesc) || !$filedesc) {
 				/* finished reading file */
@@ -269,7 +269,7 @@
 		/**
 		 * @private
 		 */
-		function &getDataChunk($chunksize)
+		function getDataChunk($chunksize)
 		{
 			if (!$this->_fileDescriptor) {
 				include_once( PLOG_CLASS_PATH."class/gallery/dao/galleryresourcestorage.class.php" );			



More information about the pLog-svn mailing list