From: <te...@us...> - 2013-07-21 12:49:45
|
Revision: 6126 http://sourceforge.net/p/web-erp/reponame/6126 Author: tehonu Date: 2013-07-21 12:49:43 +0000 (Sun, 21 Jul 2013) Log Message: ----------- Change from type text to email as suggested by Tim Modified Paths: -------------- trunk/ShopParameters.php trunk/SystemParameters.php Modified: trunk/ShopParameters.php =================================================================== --- trunk/ShopParameters.php 2013-07-21 12:43:50 UTC (rev 6125) +++ trunk/ShopParameters.php 2013-07-21 12:49:43 UTC (rev 6126) @@ -239,7 +239,7 @@ //Shop Manager Email echo '<tr> <td>' . _('Shop Manager Email') . ':</td> - <td><input type="text" name="X_ShopManagerEmail" required size="50" maxlength="50" value="' . $_SESSION['ShopManagerEmail'] . '" /></td> + <td><input type="email" name="X_ShopManagerEmail" required size="50" maxlength="50" value="' . $_SESSION['ShopManagerEmail'] . '" /></td> <td>' . _('Enter the email address of the webSHOP manager.') . '</td> </tr>'; Modified: trunk/SystemParameters.php =================================================================== --- trunk/SystemParameters.php 2013-07-21 12:43:50 UTC (rev 6125) +++ trunk/SystemParameters.php 2013-07-21 12:49:43 UTC (rev 6126) @@ -1107,15 +1107,15 @@ echo '</select></td><td>' . _('This location is the location where work orders will be created from when the auto create work orders option is activated') . '</td></tr>'; echo '<tr style="outline: 1px solid"><td>' . _('Factory Manager Email Address') . ':</td> - <td><input type="text" name="X_FactoryManagerEmail" size="50" maxlength="50" value="' . $_SESSION['FactoryManagerEmail'] . '" /></td> + <td><input type="email" name="X_FactoryManagerEmail" size="50" maxlength="50" value="' . $_SESSION['FactoryManagerEmail'] . '" /></td> <td>' . _('Work orders automatically created when sales orders are entered will be emailed to this address') .'</td></tr>'; echo '<tr style="outline: 1px solid"><td>' . _('Purchasing Manager Email Address') . ':</td> - <td><input type="text" name="X_PurchasingManagerEmail" size="50" maxlength="50" value="' . $_SESSION['PurchasingManagerEmail'] . '" /></td> + <td><input type="email" name="X_PurchasingManagerEmail" size="50" maxlength="50" value="' . $_SESSION['PurchasingManagerEmail'] . '" /></td> <td>' . _('The email address for the purchasing manager, used to receive notifications by the tendering system') .'</td></tr>'; echo '<tr style="outline: 1px solid"><td>' . _('Inventory Manager Email Address') . ':</td> - <td><input type="text" name="X_InventoryManagerEmail" size="50" maxlength="50" value="' . $_SESSION['InventoryManagerEmail'] . '" /></td> + <td><input type="email" name="X_InventoryManagerEmail" size="50" maxlength="50" value="' . $_SESSION['InventoryManagerEmail'] . '" /></td> <td>' . _('The email address for the inventory manager, where notifications of all manual stock adjustments created are sent by the system. Leave blank if no emails should be sent to the factory manager for manual stock adjustments') .'</td></tr>'; echo '<tr style="outline: 1px solid"> |