From: <tim...@us...> - 2009-11-24 16:05:59
|
Revision: 3101 http://web-erp.svn.sourceforge.net/web-erp/?rev=3101&view=rev Author: tim_schofield Date: 2009-11-24 16:05:52 +0000 (Tue, 24 Nov 2009) Log Message: ----------- Remove .svn from the theme list, and minor layout changes for currencies where large numbers are common. Modified Paths: -------------- trunk/SystemParameters.php trunk/doc/Change.log.html Modified: trunk/SystemParameters.php =================================================================== --- trunk/SystemParameters.php 2009-11-24 14:47:56 UTC (rev 3100) +++ trunk/SystemParameters.php 2009-11-24 16:05:52 UTC (rev 3101) @@ -318,7 +318,7 @@ <td><select Name="X_DefaultTheme">'; $ThemeDirectory = dir('css/'); while (false != ($ThemeName = $ThemeDirectory->read())){ - if (is_dir("css/$ThemeName") AND $ThemeName != '.' AND $ThemeName != '..' AND $ThemeName != 'CVS'){ + if (is_dir("css/$ThemeName") AND $ThemeName != '.' AND $ThemeName != '..' AND $ThemeName != '.svn'){ if ($_SESSION['DefaultTheme'] == $ThemeName) echo "<option selected value='$ThemeName'>$ThemeName"; else @@ -343,7 +343,7 @@ // DefaultCreditLimit echo '<tr><td>' . _('Default Credit Limit') . ':</td> - <td><input type="Text" class="number" Name="X_DefaultCreditLimit" value="' . $_SESSION['DefaultCreditLimit'] . '" size=6 maxlength=12></td> + <td><input type="Text" class="number" Name="X_DefaultCreditLimit" value="' . $_SESSION['DefaultCreditLimit'] . '" size=12 maxlength=12></td> <td>' . _('The default used in new customer set up') . '</td></tr>'; // Check Credit Limits @@ -489,7 +489,7 @@ //FreightChargeAppliesIfLessThan echo '<tr><td>' . _('Apply freight charges if an order is less than') . ':</td> - <td><input type="Text" class="number" Name="X_FreightChargeAppliesIfLessThan" size=6 maxlength=12 value="' . $_SESSION['FreightChargeAppliesIfLessThan'] . '"></td> + <td><input type="Text" class="number" Name="X_FreightChargeAppliesIfLessThan" size=12 maxlength=12 value="' . $_SESSION['FreightChargeAppliesIfLessThan'] . '"></td> <td>' . _('This parameter is only effective if Do Freight Calculation is set to Yes. If it is set to 0 then freight is always charged. The total order value is compared to this value in deciding whether or not to charge freight') .'</td></tr>'; @@ -762,7 +762,7 @@ <td><input type="text" name="X_WikiPath" size=40 maxlength=40 value="' . $_SESSION['WikiPath'] . '"></td> <td>' . _('The path to the wiki installation to form the basis of wiki URLs - this should be the directory on the web-server where the wiki is installed. The wiki must be installed on the same web-server as webERP') .'</td></tr>'; -echo '<tr><td>' . _('Geocode Customers and Suppliers:') . ':</td> +echo '<tr><td>' . _('Geocode Customers and Suppliers') . ':</td> <td><select name="X_geocode_integration">'; if ($_SESSION['geocode_integration']==1){ echo '<option selected value="1">' . _('Geocode Integration Enabled') . '</option>'; Modified: trunk/doc/Change.log.html =================================================================== --- trunk/doc/Change.log.html 2009-11-24 14:47:56 UTC (rev 3100) +++ trunk/doc/Change.log.html 2009-11-24 16:05:52 UTC (rev 3101) @@ -1,5 +1,6 @@ <p><font SIZE=4 COLOR=BLUE><b>webERP Change Log</b></font></p> <p> +<p>24/11/09 Tim: SystemParameters.php - Remove .svn from the theme list, and minor layout changes for currencies where large numbers are common. <p>23/11/09 Tim: PrintCustTrans.php and PrintCustTransPortrait.php - Correctly print the invoice lines, and add the invoice number to the file name <p>22/11/09 Tim: MiscFunctions.php - Correction for case of LogPath not being set <p>22/11/09 Tim: PurchData.php - Improve the working of adding and editing purchasing data This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |