From: <tu...@us...> - 2017-12-13 19:23:24
|
Revision: 7879 http://sourceforge.net/p/web-erp/reponame/7879 Author: turbopt Date: 2017-12-13 19:23:22 +0000 (Wed, 13 Dec 2017) Log Message: ----------- QATests.php: Correct wrong attribute name in two option tags. (Reported in forums by Paul Becker) Modified Paths: -------------- trunk/QATests.php trunk/doc/Change.log Modified: trunk/QATests.php =================================================================== --- trunk/QATests.php 2017-12-12 23:23:56 UTC (rev 7878) +++ trunk/QATests.php 2017-12-13 19:23:22 UTC (rev 7879) @@ -259,7 +259,7 @@ if ($_POST['Type']==0){ echo '<option selected="selected" value="0">' . _('Text Box') . '</option>'; } else { - echo '<option Type="0">' . _('Text Box') . '</option>'; + echo '<option value="0">' . _('Text Box') . '</option>'; } if ($_POST['Type']==1){ echo '<option selected="selected" value="1">' . _('Select Box') . '</option>'; @@ -269,7 +269,7 @@ if ($_POST['Type']==2){ echo '<option selected="selected" value="2">' . _('Check Box') . '</option>'; } else { - echo '<option Type="2">' . _('Check Box') . '</option>'; + echo '<option value="2">' . _('Check Box') . '</option>'; } if ($_POST['Type']==3){ echo '<option selected="selected" value="3">' . _('Date Box') . '</option>'; Modified: trunk/doc/Change.log =================================================================== --- trunk/doc/Change.log 2017-12-12 23:23:56 UTC (rev 7878) +++ trunk/doc/Change.log 2017-12-13 19:23:22 UTC (rev 7879) @@ -1,5 +1,6 @@ webERP Change Log +11/13/17 PaulT: QATests.php: Correct wrong attribute name in two option tags. (Reported in forums by Paul Becker) 11/12/17 PaulT: PHP 7 constructor compatibility change to phplot.php. (Reported in forums by rjonesbsink) 11/12/17 Paul Becker: (forums) SelectSalesOrder.php: Consistent delivery address and correct a unit conversion issue. 11/12/17 PaulT: PHP 7 constructor compatibility change to htmlMimeMail.php and mimePart.php |