|
From: <cod...@go...> - 2009-06-08 16:27:53
|
Author: ke...@se...
Date: Mon Jun 8 09:26:58 2009
New Revision: 1375
Modified:
trunk/andro/application/androBuild.php
trunk/andro/lib/andro_universal.add
Log:
Show Menu text as config setting. Also unrelated fix to builder that was
causing tmp files to not get built properly.
Modified: trunk/andro/application/androBuild.php
==============================================================================
--- trunk/andro/application/androBuild.php (original)
+++ trunk/andro/application/androBuild.php Mon Jun 8 09:26:58 2009
@@ -10274,12 +10274,14 @@
$text = str_replace("#","\"",$text);
}
$text = $text ."\r\n";
- if ( !is_file( $file ) ) {
+ #if ( !is_file( $file ) ) {
+ # KFD 6/8/09, why??
// DO 3-23-2009 Changed mode
- $FILEOUT = fopen( $file , 'w+' );
- fwrite($FILEOUT,$text);
- fclose($FILEOUT);
- }
+ #$FILEOUT = fopen( $file , 'w' );
+ #fwrite($FILEOUT,$text);
+ #fclose($FILEOUT);
+ file_put_contents($file,$text);
+ #}
}
function fs_Skeleton_copy($src,$dst) {
Modified: trunk/andro/lib/andro_universal.add
==============================================================================
--- trunk/andro/lib/andro_universal.add (original)
+++ trunk/andro/lib/andro_universal.add Mon Jun 8 09:26:58 2009
@@ -651,6 +651,7 @@
column { cf_template; }
column { smtpout; }
}
+
table configinst {
module: system;
uisort: 552;
@@ -666,7 +667,7 @@
column description { suffix: _login; description: Login; }
projection login {
- column { loginbefore; loginafter; notesfooter }
+ column { loginbefore; loginafter; notesfooter; x4menutitle; }
}
column description { suffix: _email; description: Sending Emails; }
|