|
From: <ken...@us...> - 2008-11-03 19:22:40
|
Revision: 851
http://andro.svn.sourceforge.net/andro/?rev=851&view=rev
Author: kendowns
Date: 2008-11-03 16:00:08 +0000 (Mon, 03 Nov 2008)
Log Message:
-----------
Looks for config var flag_x6 to be "Y". If so, assigns x6profile='conventional' if no other profile is chosen.
Modified Paths:
--------------
trunk/andro/lib/index_hidden.php
Modified: trunk/andro/lib/index_hidden.php
===================================================================
--- trunk/andro/lib/index_hidden.php 2008-11-03 15:59:21 UTC (rev 850)
+++ trunk/andro/lib/index_hidden.php 2008-11-03 16:00:08 UTC (rev 851)
@@ -412,6 +412,11 @@
if(isset($GLOBALS['AG']['x6profiles'][$x6cand])) {
$x6profile = $GLOBALS['AG']['x6profiles'][$x6cand];
}
+#else {
+# if(configGet('flag_x6','N')=='Y' && $x6cand!='menu') {
+# $x6profile = 'conventional';
+# }
+#}
# the action is always taken directly from request variables,
#
@@ -580,6 +585,7 @@
# initialize the objects so downstrem code can make
# them visible.
jsInclude('clib/x6.js');
+ #jsInclude('clib/jquery.maskedinput-1.1.4.js');
jqDocReady('x6.init()');
}
}
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|