[pLog-svn] r1923 - plog/branches/plog-1.0.1/class/dao/customfields

oscar at devel.plogworld.net oscar at devel.plogworld.net
Mon May 2 14:35:30 GMT 2005


Author: oscar
Date: 2005-05-02 14:35:29 +0000 (Mon, 02 May 2005)
New Revision: 1923

Modified:
   plog/branches/plog-1.0.1/class/dao/customfields/customfield.class.php
Log:
fixed a small bug in CustomField::isSearchable()


Modified: plog/branches/plog-1.0.1/class/dao/customfields/customfield.class.php
===================================================================
--- plog/branches/plog-1.0.1/class/dao/customfields/customfield.class.php	2005-05-01 17:49:35 UTC (rev 1922)
+++ plog/branches/plog-1.0.1/class/dao/customfields/customfield.class.php	2005-05-02 14:35:29 UTC (rev 1923)
@@ -79,7 +79,10 @@
 		
 		function getSearchable()
 		{
-			return( $this->_searchable == 1 );
+			if( $this->_searchable == 1 )
+				return 1;
+			else
+				return 0;
 		}
 		
 		function isSearchable()




More information about the pLog-svn mailing list