From: <tu...@us...> - 2018-02-01 01:38:59
|
Revision: 7928 http://sourceforge.net/p/web-erp/reponame/7928 Author: turbopt Date: 2018-02-01 01:38:56 +0000 (Thu, 01 Feb 2018) Log Message: ----------- Add a 'warning' case to getMsg(), as there is mixed use of 'warn' and 'warning' usage with prnMsg() calls. The 'warning' (before this change) defaults to an 'info' style message. Modified Paths: -------------- trunk/doc/Change.log trunk/includes/MiscFunctions.php Modified: trunk/doc/Change.log =================================================================== --- trunk/doc/Change.log 2018-01-28 01:03:00 UTC (rev 7927) +++ trunk/doc/Change.log 2018-02-01 01:38:56 UTC (rev 7928) @@ -1,6 +1,7 @@ webERP Change Log -27/1/18 PaulT: Remove unused $db parameter from DB_query(), DB_error_no() and DB_error_msg() other DB-related function calls. +31/1/18 PaulT: Add a 'warning' case to getMsg(), as there is mixed use of 'warn' and 'warning' usage with prnMsg() calls. The 'warning' (before this change) defaults to an 'info' style message. +27/1/18 PaulT: Remove unused $db parameter from DB_query(), DB_error_no(), DB_error_msg() and other DB-related function calls. 27/1/18 Paul Becker (PaulT commit): Remove stray ; appearing after if, else, and foreach blocks. (Reported in forums: http://www.weberp.org/forum/showthread.php?tid=8064) 27/1/18 PaulT: MiscFunctions.php, Z_ChangeStockCode.php, Z_ChangeGLAccountCode.php: Remove unused $db parameter from function ChangeFieldInTable(). 26/1/18 Andrew Galuski/Tim (PaulT merge/commit): New picking list feature for regular and controlled/serialized stock. This feature improves (and replaces) the current pick list handling. (Reported in forums by HDeriauFF: http://www.weberp.org/forum/showthread.php?tid=7988) Modified: trunk/includes/MiscFunctions.php =================================================================== --- trunk/includes/MiscFunctions.php 2018-01-28 01:03:00 UTC (rev 7927) +++ trunk/includes/MiscFunctions.php 2018-02-01 01:38:56 UTC (rev 7928) @@ -31,6 +31,7 @@ } break; case 'warn': + case 'warning': $Class = 'warn'; $Prefix = $Prefix ? $Prefix : _('WARNING') . ' ' . _('Message Report'); if (isset($_SESSION['LogSeverity']) and $_SESSION['LogSeverity']>1) { |