[pLog-svn] r4769 - plog/branches/lifetype-1.2/class/config

oscar at devel.lifetype.net oscar at devel.lifetype.net
Sun Feb 18 15:45:23 EST 2007


Author: oscar
Date: 2007-02-18 15:45:23 -0500 (Sun, 18 Feb 2007)
New Revision: 4769

Modified:
   plog/branches/lifetype-1.2/class/config/configfilestorage.class.php
Log:
Code cleanup.

Modified: plog/branches/lifetype-1.2/class/config/configfilestorage.class.php
===================================================================
--- plog/branches/lifetype-1.2/class/config/configfilestorage.class.php	2007-02-18 20:44:47 UTC (rev 4768)
+++ plog/branches/lifetype-1.2/class/config/configfilestorage.class.php	2007-02-18 20:45:23 UTC (rev 4769)
@@ -138,7 +138,6 @@
          */
         function _getDataString( $data )
         {
-        	//print("data = $data<br/>");
         	if( $this->_getType( $data ) == TYPE_INTEGER ) {
             	$dataString = $data;
             }
@@ -168,8 +167,6 @@
                 	$dataString[strlen($dataString)-1] = ")";
                 else
                 	$dataString .= ")";
-
-                    //  print("dataString = ".$dataString."<br/>");
             }
             elseif( $this->_getType( $data ) == TYPE_OBJECT ) {
             	$dataString = serialize( $data );
@@ -296,7 +293,6 @@
         function save()
         {
         	foreach( $this->_props->getAsArray() as $key => $value ) {
-                    //print("saving: $key - ".htmlspecialchars($value)."<br/>");
             	$this->saveValue( $key, $value );
             }
 



More information about the pLog-svn mailing list