|
From: <tu...@us...> - 2014-03-01 16:03:43
|
Revision: 6591
http://sourceforge.net/p/web-erp/reponame/6591
Author: turbopt
Date: 2014-03-01 16:03:37 +0000 (Sat, 01 Mar 2014)
Log Message:
-----------
Correct variable spelling error. [reported in forums by serakfalcon]
Modified Paths:
--------------
trunk/AccountGroups.php
trunk/doc/Change.log
Modified: trunk/AccountGroups.php
===================================================================
--- trunk/AccountGroups.php 2014-02-28 12:54:29 UTC (rev 6590)
+++ trunk/AccountGroups.php 2014-03-01 16:03:37 UTC (rev 6591)
@@ -227,7 +227,7 @@
$GroupResult = DB_query($sql, $db,$ErrMsg,$DbgMsg);
while ($GroupRow = DB_fetch_array($GroupResult) ) {
- if (isset($_POST['ParentGroupName']) AND $_POST['ParentGroupName']==$RroupRow['groupname']) {
+ if (isset($_POST['ParentGroupName']) AND $_POST['ParentGroupName']==$GroupRow['groupname']) {
echo '<option selected="selected" value="'.htmlentities($GroupRow['groupname'], ENT_QUOTES,'UTF-8').'">' .htmlentities($GroupRow['groupname'], ENT_QUOTES,'UTF-8'). '</option>';
} else {
echo '<option value="'.htmlentities($GroupRow['groupname'], ENT_QUOTES,'UTF-8').'">' .htmlentities($GroupRow['groupname'], ENT_QUOTES,'UTF-8') . '</option>';
Modified: trunk/doc/Change.log
===================================================================
--- trunk/doc/Change.log 2014-02-28 12:54:29 UTC (rev 6590)
+++ trunk/doc/Change.log 2014-03-01 16:03:37 UTC (rev 6591)
@@ -1,4 +1,5 @@
webERP Change Log
+1/3/14 Paul T: Correct variable spelling error. [reported in forums by serakfalcon]
24/2/14 Exson: Make negative integer allowable in MiscFunctions.js and make negative integer inputable for PastDueDays in SystemParameters.php.
22/2/14 Exson: Fixed the wrong error messages displayed while input date data manually in MiscFunctions.js.
19/2/14 icedlava: GLTrialBalance_csv.php -Remove set AllowAnyone variable and prevent TB display - temp solution.
|