Update of /cvsroot/phpvortex/phpvortex/conf
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv8777/conf
Modified Files:
conf.php
Log Message:
Added a Select function to DB_Base class, changed other classes to use it and fixed some assorted bugs.
Index: conf.php
===================================================================
RCS file: /cvsroot/phpvortex/phpvortex/conf/conf.php,v
retrieving revision 1.5
retrieving revision 1.6
diff -C2 -d -r1.5 -r1.6
*** conf.php 27 Oct 2004 14:10:46 -0000 1.5
--- conf.php 29 Sep 2005 20:23:17 -0000 1.6
***************
*** 40,43 ****
--- 40,53 ----
*/
define('TB_ERR_DB', 4);
+ /**
+ * Field origin is from DataBase.
+ * Used by {@link FT_Base::ShowForm()} and {@link FT_Base::ShowPlain()}.
+ */
+ define('FT_OR_DB', 1);
+ /**
+ * Field origin is from User.
+ * Used by {@link FT_Base::ShowForm()} and {@link FT_Base::ShowPlain()}.
+ */
+ define('FT_OR_USER', 2);
/** require one of the localized message files */
|