From: <Tu...@us...> - 2012-04-08 02:56:48
|
Revision: 5234 http://web-erp.svn.sourceforge.net/web-erp/?rev=5234&view=rev Author: TurboPT Date: 2012-04-08 02:56:40 +0000 (Sun, 08 Apr 2012) Log Message: ----------- Removed invalid attribute colspan where found within table tag elements. Modified Paths: -------------- trunk/PaymentAllocations.php trunk/RecurringSalesOrders.php trunk/ReverseGRN.php trunk/SalesAnalRepts.php trunk/SelectCompletedOrder.php trunk/SelectCreditItems.php trunk/SelectCustomer.php trunk/SelectOrderItems.php trunk/SelectProduct.php trunk/SelectRecurringSalesOrder.php trunk/SelectSalesOrder.php trunk/SelectSupplier.php trunk/SelectWorkOrder.php trunk/ShipmentCosting.php trunk/Shipments.php trunk/ShiptsList.php trunk/SpecialOrder.php trunk/SupplierCredit.php trunk/SupplierInvoice.php trunk/SupplierTenderCreate.php trunk/SupplierTenders.php trunk/WorkOrderEntry.php trunk/WorkOrderIssue.php trunk/doc/Change.log Modified: trunk/PaymentAllocations.php =================================================================== --- trunk/PaymentAllocations.php 2012-04-08 01:24:49 UTC (rev 5233) +++ trunk/PaymentAllocations.php 2012-04-08 02:56:40 UTC (rev 5234) @@ -59,7 +59,7 @@ exit; } -echo '<table cellpadding="2" colspan="7 width="80%" class="selection">'; +echo '<table cellpadding="2" width="80%" class="selection">'; $TableHeader = '<tr> <th>' . _('Supplier Number') . '<br />' . _('Reference') . '</th> <th>' . _('Payment') .'<br />' . _('Reference') . '</th> Modified: trunk/RecurringSalesOrders.php =================================================================== --- trunk/RecurringSalesOrders.php 2012-04-08 01:24:49 UTC (rev 5233) +++ trunk/RecurringSalesOrders.php 2012-04-08 02:56:40 UTC (rev 5234) @@ -312,7 +312,7 @@ echo '<input type="hidden" name="FormID" value="' . $_SESSION['FormID'] . '" />'; -echo '<table cellpadding="2" colspan="7" class="selection">'; +echo '<table cellpadding="2" class="selection">'; echo '<tr><th colspan="7"><b>'._('Order Line Details').'</b></th></tr>'; echo '<tr> <th>'. _('Item Code') .'</th> Modified: trunk/ReverseGRN.php =================================================================== --- trunk/ReverseGRN.php 2012-04-08 01:24:49 UTC (rev 5233) +++ trunk/ReverseGRN.php 2012-04-08 02:56:40 UTC (rev 5234) @@ -378,7 +378,7 @@ prnMsg(_('There are no outstanding goods received yet to be invoiced for') . ' ' . $_POST['SuppName'] . '.<br />' . _('To reverse a GRN that has been invoiced first it must be credited'),'warn'); } else { //there are GRNs to show - echo '<br /><table cellpadding="2" colspan="7" class="selection">'; + echo '<br /><table cellpadding="2" class="selection">'; $TableHeader = '<tr> <th>' . _('GRN') . ' #</th> <th>' . _('Item Code') . '</th> Modified: trunk/SalesAnalRepts.php =================================================================== --- trunk/SalesAnalRepts.php 2012-04-08 01:24:49 UTC (rev 5233) +++ trunk/SalesAnalRepts.php 2012-04-08 02:56:40 UTC (rev 5234) @@ -383,12 +383,12 @@ echo '<input type="hidden" name="SelectedReport" value="' . $SelectedReport . '" />'; echo '<input type="hidden" name="ReportID" value="' . $ReportID . '" />'; - echo '<table width="98%" colspan="4" class="selection"> + echo '<table width="98%" class="selection"> <tr> <th colspan="8"><font size="3" color="blue">' . _('Edit The Selected Report') . '</font></th> </tr>'; } else { - echo '<table width="98%" colspan="4" class="selection"> + echo '<table width="98%" class="selection"> <tr> <th colspan="8"><font size="3" color="blue">' . _('Define A New Report') . '</font></th> </tr>'; Modified: trunk/SelectCompletedOrder.php =================================================================== --- trunk/SelectCompletedOrder.php 2012-04-08 01:24:49 UTC (rev 5233) +++ trunk/SelectCompletedOrder.php 2012-04-08 02:56:40 UTC (rev 5234) @@ -543,7 +543,7 @@ If (isset($StockItemsResult)) { echo '<br /> - <table cellpadding="2" colspan="7" class="selection">'; + <table cellpadding="2" class="selection">'; $TableHeadings = '<tr> <th>' . _('Code') . '</th> @@ -595,7 +595,7 @@ /*show a table of the orders returned by the SQL */ - echo '<br /><table cellpadding="2" colspan="6" width="90%" class="selection">'; + echo '<br /><table cellpadding="2" width="90%" class="selection">'; $tableheader = '<tr><th>' . _('Order') . ' #</th> <th>' . _('Customer') . '</th> Modified: trunk/SelectCreditItems.php =================================================================== --- trunk/SelectCreditItems.php 2012-04-08 01:24:49 UTC (rev 5233) +++ trunk/SelectCreditItems.php 2012-04-08 02:56:40 UTC (rev 5234) @@ -214,7 +214,7 @@ echo '<p class="page_title_text"><img src="' . $rootpath . '/css/' . $theme . '/images/magnifier.png" title="' . _('Search') . '" alt="" />' . ' ' . _('Select Customer For Credit Note').'</p>'; - echo '<table cellpadding="3" colspan="4" class="selection">'; + echo '<table cellpadding="3" class="selection">'; echo '<tr><th colspan="5"><font size="3" color="navy"><b> ' . _('Customer Selection') .'</b></font></th></tr>'; echo '<tr> <td><font size="1">' . _('Enter text in the customer name') . ':</font></td> @@ -231,7 +231,7 @@ if (isset($result_CustSelect)) { - echo '<table cellpadding="2" colspan="7">'; + echo '<table cellpadding="2">'; $TableHeader = '<br /> <tr> @@ -667,7 +667,7 @@ /* This is where the credit note as selected should be displayed reflecting any deletions or insertions*/ - echo '<table cellpadding="2" colspan="7" class="selection"> + echo '<table cellpadding="2" class="selection"> <tr> <th>' . _('Item Code') . '</th> <th>' . _('Item Description') . '</th> @@ -983,7 +983,7 @@ if (isset($SearchResult)) { - echo '<table cellpadding="2" colspan="7" class="selection">'; + echo '<table cellpadding="2" class="selection">'; $TableHeader = '<tr> <th>' . _('Code') . '</th> <th>' . _('Description') . '</th> Modified: trunk/SelectCustomer.php =================================================================== --- trunk/SelectCustomer.php 2012-04-08 01:24:49 UTC (rev 5233) +++ trunk/SelectCustomer.php 2012-04-08 02:56:40 UTC (rev 5234) @@ -260,7 +260,7 @@ prnMsg($msg,'info'); } echo '<p class="page_title_text"><img src="' . $rootpath . '/css/' . $theme . '/images/magnifier.png" title="' . _('Search') . '" alt="" />' . ' ' . _('Search for Customers').'</p>'; -echo '<table cellpadding="3" colspan="4" class="selection">'; +echo '<table cellpadding="3" class="selection">'; echo '<tr><td colspan="2">' . _('Enter a partial Name') . ':</td><td>'; if (isset($_POST['Keywords'])) { echo '<input type="text" name="Keywords" value="' . $_POST['Keywords'] . '" size="20" maxlength="25" />'; @@ -409,7 +409,7 @@ echo '</div>'; } echo '<br /> - <table cellpadding="2" colspan="7" class="selection">'; + <table cellpadding="2" class="selection">'; $TableHeader = '<tr> <th>' . _('Code') . '</th> <th>' . _('Customer Name') . '</th> @@ -503,7 +503,7 @@ } else { echo '<tr> <td colspan="2"> - <table width="45%" colspan="2" cellpadding="4"> + <table width="45%" cellpadding="4"> <tr> <th width="33%">' . _('Customer Mapping') . '</th> </tr> @@ -555,7 +555,7 @@ $Total1Result = DB_query($SQL, $db); $row = DB_fetch_array($Total1Result); echo '<tr><td colspan="2">'; - echo '<table width="45%" colspan="2" cellpadding="4">'; + echo '<table width="45%" cellpadding="4">'; echo '<tr><th width="33%" colspan="3">' . _('Customer Data') . '</th></tr>'; echo '<tr><td valign="top" class="select">'; /* Customer Data */ if ($myrow['lastpaiddate'] == 0) { Modified: trunk/SelectOrderItems.php =================================================================== --- trunk/SelectOrderItems.php 2012-04-08 01:24:49 UTC (rev 5233) +++ trunk/SelectOrderItems.php 2012-04-08 02:56:40 UTC (rev 5234) @@ -580,7 +580,7 @@ echo '<form action="' . htmlspecialchars($_SERVER['PHP_SELF'],ENT_QUOTES,'UTF-8') . '?identifier='.$identifier . '" name="SelectCustomer" method="post"> <input type="hidden" name="FormID" value="' . $_SESSION['FormID'] . '" />'; - echo '<table cellpadding="3" colspan="4" class="selection"> + echo '<table cellpadding="3" class="selection"> <tr> <td><h5>' . _('Part of the Customer Branch Name') . ':</h5></td> <td><input tabindex="1" type="text" name="CustKeywords" size="20" maxlength="25" /></td> @@ -1323,7 +1323,7 @@ /* This is where the order as selected should be displayed reflecting any deletions or insertions*/ echo '<br /> - <table width="90%" cellpadding="2" colspan="7"> + <table width="90%" cellpadding="2"> <tr style="background-color:#800000">'; if($_SESSION['Items'.$identifier]->DefaultPOLine == 1){ echo '<th>' . _('PO Line') . '</th>'; Modified: trunk/SelectProduct.php =================================================================== --- trunk/SelectProduct.php 2012-04-08 01:24:49 UTC (rev 5233) +++ trunk/SelectProduct.php 2012-04-08 02:56:40 UTC (rev 5234) @@ -483,7 +483,7 @@ echo '</td></tr></table>'; } else { // options (links) to pages. This requires stock id also to be passed. - echo '<table width="90%" colspan="2" cellpadding="4">'; + echo '<table width="90%" cellpadding="4">'; echo '<tr> <th width="33%">' . _('Item Inquiries') . '</th> <th width="33%">' . _('Item Transactions') . '</th> Modified: trunk/SelectRecurringSalesOrder.php =================================================================== --- trunk/SelectRecurringSalesOrder.php 2012-04-08 01:24:49 UTC (rev 5233) +++ trunk/SelectRecurringSalesOrder.php 2012-04-08 02:56:40 UTC (rev 5234) @@ -79,7 +79,7 @@ /*show a table of the orders returned by the SQL */ echo '<br /> - <table cellpadding="2" colspan="7" width="90%" class="selection">'; + <table cellpadding="2" width="90%" class="selection">'; $tableheader = '<tr> <th>' . _('Modify') . '</th> Modified: trunk/SelectSalesOrder.php =================================================================== --- trunk/SelectSalesOrder.php 2012-04-08 01:24:49 UTC (rev 5233) +++ trunk/SelectSalesOrder.php 2012-04-08 02:56:40 UTC (rev 5234) @@ -575,7 +575,7 @@ if (isset($StockItemsResult) AND DB_num_rows($StockItemsResult)>0) { - echo '<table cellpadding="2" colspan="7" class="selection">'; + echo '<table cellpadding="2" class="selection">'; $TableHeader = '<tr> <th>' . _('Code') . '</th> <th>' . _('Description') . '</th> @@ -822,7 +822,7 @@ $AuthResult=DB_query($AuthSQL,$db); $AuthRow=DB_fetch_array($AuthResult); - echo '<table cellpadding="2" colspan="7" width="95%" class="selection">'; + echo '<table cellpadding="2" width="95%" class="selection">'; if (isset($_POST['Quotations']) AND $_POST['Quotations']=='Orders_Only'){ $tableheader = '<tr> Modified: trunk/SelectSupplier.php =================================================================== --- trunk/SelectSupplier.php 2012-04-08 01:24:49 UTC (rev 5233) +++ trunk/SelectSupplier.php 2012-04-08 02:56:40 UTC (rev 5234) @@ -143,7 +143,7 @@ echo '<p class="page_title_text"><img src="' . $rootpath . '/css/' . $theme . '/images/supplier.png" title="' . _('Supplier') . '" alt="" />' . ' ' . _('Supplier') . ' : <b>' . $_SESSION['SupplierID'] . ' - ' . $SupplierName . '</b> ' . _('has been selected') . '.</p>'; echo '<div class="page_help_text">' . _('Select a menu option to operate using this supplier.') . '</div>'; echo '<br /> - <table width="90%" colspan="2" cellpadding="4"> + <table width="90%" cellpadding="4"> <tr> <th width="33%">' . _('Supplier Inquiries') . '</th> <th width="33%">' . _('Supplier Transactions') . '</th> @@ -178,7 +178,7 @@ } else { // Supplier is not selected yet echo '<br />'; - echo '<table width="90%" colspan="2" cellpadding="4"> + echo '<table width="90%" cellpadding="4"> <tr> <th width="33%">' . _('Supplier Inquiries') . '</th> <th width="33%">' . _('Supplier Transactions') . '</th> @@ -196,7 +196,7 @@ echo '<form action="' . htmlspecialchars($_SERVER['PHP_SELF'],ENT_QUOTES,'UTF-8') . '" method="post">'; echo '<input type="hidden" name="FormID" value="' . $_SESSION['FormID'] . '" />'; echo '<p class="page_title_text"><img src="' . $rootpath . '/css/' . $theme . '/images/magnifier.png" title="' . _('Search') . '" alt="" />' . ' ' . _('Search for Suppliers') . '</p> - <table cellpadding="3" colspan="4" class="selection"> + <table cellpadding="3" class="selection"> <tr> <td>' . _('Enter a partial Name') . ':</font></td> <td>'; @@ -253,7 +253,7 @@ echo '<br /> <br /> <br /> - <table cellpadding="2" colspan="7">'; + <table cellpadding="2">'; $tableheader = '<tr> <th>' . _('Code') . '</th> <th>' . _('Supplier Name') . '</th> @@ -349,7 +349,7 @@ $row = DB_fetch_array($Total1Result); echo '<br />'; echo '<tr><td colspan="2">'; - echo '<table width="45%" colspan="2" cellpadding="4">'; + echo '<table width="45%" cellpadding="4">'; echo '<tr><th width="33%" colspan="2">' . _('Supplier Data') . '</th></tr>'; echo '<tr><td valign="top" class="select">'; /* Supplier Data */ //echo "Distance to this Supplier: <b>TBA</b><br />"; Modified: trunk/SelectWorkOrder.php =================================================================== --- trunk/SelectWorkOrder.php 2012-04-08 01:24:49 UTC (rev 5233) +++ trunk/SelectWorkOrder.php 2012-04-08 02:56:40 UTC (rev 5234) @@ -186,7 +186,7 @@ if (isset($StockItemsResult)) { echo '<br /> - <table cellpadding="2" colspan="7" class="selection">'; + <table cellpadding="2" class="selection">'; $TableHeader = '<tr> <th>' . _('Code') . '</th> <th>' . _('Description') . '</th> @@ -301,7 +301,7 @@ /*show a table of the orders returned by the SQL */ if (DB_num_rows($WorkOrdersResult)>0) { echo '<br /> - <table cellpadding="2" colspan="7" width="95%" class="selection">'; + <table cellpadding="2" width="95%" class="selection">'; $tableheader = '<tr> Modified: trunk/ShipmentCosting.php =================================================================== --- trunk/ShipmentCosting.php 2012-04-08 01:24:49 UTC (rev 5233) +++ trunk/ShipmentCosting.php 2012-04-08 02:56:40 UTC (rev 5234) @@ -140,7 +140,7 @@ $PeriodNo = GetPeriod(Date($_SESSION['DefaultDateFormat']), $db); } - echo '<br /><table cellpadding="2" colspan="7" class="selection">'; + echo '<br /><table cellpadding="2" class="selection">'; echo '<tr> <th colspan="9"><font color="navy" size="3">' . _('Items on shipment'). '</font></th></tr>'; @@ -498,7 +498,7 @@ echo '<br /> - <table colspan="2" width="95%"> + <table width="95%"> <tr> <td valign="top">'; // put this shipment charges side by side in a table (major table 2 cols) @@ -526,7 +526,7 @@ $ChargesResult = DB_query($sql,$db); -echo '<table cellpadding="2" colspan="6" class="selection">'; +echo '<table cellpadding="2" class="selection">'; echo '<tr> <th colspan="6"><font color="navy" size="3">' . _('Shipment Charges Against Products'). '</font></th> </tr>'; @@ -603,7 +603,7 @@ $ChargesResult = DB_query($sql,$db); -echo '<table cellpadding="2" colspan="5" class="selection">'; +echo '<table cellpadding="2" class="selection">'; echo '<tr> <th colspan="6"><font color="navy" size="3">'._('General Shipment Charges').'</font></th> </tr>'; Modified: trunk/Shipments.php =================================================================== --- trunk/Shipments.php 2012-04-08 01:24:49 UTC (rev 5233) +++ trunk/Shipments.php 2012-04-08 02:56:40 UTC (rev 5234) @@ -476,7 +476,7 @@ if (DB_num_rows($result)>0){ - echo '<table cellpadding="2" colspan="7" class="selection">'; + echo '<table cellpadding="2" class="selection">'; echo '<tr> <th colspan="7"><font color="navy" size="3">'. _('Possible Order Lines To Add To This Shipment').'</font></th> </tr>'; Modified: trunk/ShiptsList.php =================================================================== --- trunk/ShiptsList.php 2012-04-08 01:24:49 UTC (rev 5233) +++ trunk/ShiptsList.php 2012-04-08 02:56:40 UTC (rev 5234) @@ -32,7 +32,7 @@ } /*show a table of the shipments returned by the SQL */ -echo '<table cellpadding="2" colspan="2" class="selection">'; +echo '<table cellpadding="2" class="selection">'; echo '<tr> <th>'. _('Reference'). '</a></th> <th>'. _('Vessel'). '</th> Modified: trunk/SpecialOrder.php =================================================================== --- trunk/SpecialOrder.php 2012-04-08 01:24:49 UTC (rev 5233) +++ trunk/SpecialOrder.php 2012-04-08 02:56:40 UTC (rev 5234) @@ -618,7 +618,7 @@ if (count($_SESSION['SPL'.$identifier]->LineItems)>0){ echo '<div class="centre"><b>' . _('Special Order Summary') . '</b></div>'; - echo '<table class="selection" cellpadding="2" colspan="7" border="1">'; + echo '<table class="selection" cellpadding="2" border="1">'; echo '<tr> <th>' . _('Item Description') . '</th> Modified: trunk/SupplierCredit.php =================================================================== --- trunk/SupplierCredit.php 2012-04-08 01:24:49 UTC (rev 5233) +++ trunk/SupplierCredit.php 2012-04-08 02:56:40 UTC (rev 5234) @@ -258,7 +258,7 @@ /* everything below here only do if a Supplier is selected fisrt add a header to show who we are making an credit note for */ -echo '<table class="selection" colspan="4"> +echo '<table class="selection"> <tr><th>' . _('Supplier') . '</th> <th>' . _('Currency') . '</th> <th>' . _('Terms') . '</th> Modified: trunk/SupplierInvoice.php =================================================================== --- trunk/SupplierInvoice.php 2012-04-08 01:24:49 UTC (rev 5233) +++ trunk/SupplierInvoice.php 2012-04-08 02:56:40 UTC (rev 5234) @@ -229,7 +229,7 @@ /* everything below here only do if a Supplier is selected fisrt add a header to show who we are making an invoice for */ - echo '<br /><table class="selection" colspan="4"> + echo '<br /><table class="selection"> <tr> <th>' . _('Supplier') . '</th> <th>' . _('Currency') . '</th> Modified: trunk/SupplierTenderCreate.php =================================================================== --- trunk/SupplierTenderCreate.php 2012-04-08 01:24:49 UTC (rev 5233) +++ trunk/SupplierTenderCreate.php 2012-04-08 02:56:40 UTC (rev 5234) @@ -518,7 +518,7 @@ echo '<form action="' . htmlspecialchars($_SERVER['PHP_SELF'].'?identifier='.$identifier, ENT_QUOTES,'UTF-8') . '" method="post">'; echo '<input type="hidden" name="FormID" value="' . $_SESSION['FormID'] . '" />'; echo '<p class="page_title_text"><img src="' . $rootpath . '/css/' . $theme . '/images/magnifier.png" title="' . _('Search') . '" alt="" />' . ' ' . _('Search for Suppliers') . '</p> - <table cellpadding="3" colspan="4" class="selection"> + <table cellpadding="3" class="selection"> <tr> <td>' . _('Enter a partial Name') . ':</td> <td>'; @@ -574,7 +574,7 @@ echo '<br /> <br /> <br /> - <table cellpadding="2" colspan="7">'; + <table cellpadding="2">'; echo '<tr> <th>' . _('Code') . '</th> <th>' . _('Supplier Name') . '</th> Modified: trunk/SupplierTenders.php =================================================================== --- trunk/SupplierTenders.php 2012-04-08 01:24:49 UTC (rev 5233) +++ trunk/SupplierTenders.php 2012-04-08 02:56:40 UTC (rev 5234) @@ -681,7 +681,7 @@ if (isset($SearchResult)) { - echo '<table cellpadding="1" colspan="7">'; + echo '<table cellpadding="1">'; $TableHeader = '<tr> <th>' . _('Code') . '</th> Modified: trunk/WorkOrderEntry.php =================================================================== --- trunk/WorkOrderEntry.php 2012-04-08 01:24:49 UTC (rev 5233) +++ trunk/WorkOrderEntry.php 2012-04-08 02:56:40 UTC (rev 5234) @@ -616,7 +616,7 @@ if (DB_num_rows($SearchResult)>1){ - echo '<table cellpadding="2" colspan="7" class="selection">'; + echo '<table cellpadding="2" class="selection">'; $TableHeader = '<tr> <th>' . _('Code') . '</th> <th>' . _('Description') . '</th> Modified: trunk/WorkOrderIssue.php =================================================================== --- trunk/WorkOrderIssue.php 2012-04-08 01:24:49 UTC (rev 5233) +++ trunk/WorkOrderIssue.php 2012-04-08 02:56:40 UTC (rev 5234) @@ -686,7 +686,7 @@ if (DB_num_rows($SearchResult)>1){ echo '<br /> - <table cellpadding="2" colspan="7" class="selection">'; + <table cellpadding="2" class="selection">'; $TableHeader = '<tr> <th>' . _('Code') . '</th> <th>' . _('Description') . '</th> Modified: trunk/doc/Change.log =================================================================== --- trunk/doc/Change.log 2012-04-08 01:24:49 UTC (rev 5233) +++ trunk/doc/Change.log 2012-04-08 02:56:40 UTC (rev 5234) @@ -1,4 +1,5 @@ webERP Change Log +7/4/2012 TurboPT: Remove invalid attribute colspan found within table tag elements. 5/4/2012 Exson: Fixed order delivery comments overlapped with Shipper in Packing slip of PDFOrderPageHeader_generic.inc Reported by CQZ from webERP Chinese Community QQ group 3/4/2012 Vitaly: Cleaned up Petty Cash module. Fixed several errors in SQL INSERT statements. 3/4/2012 Exson: Fixed typo in PurchData.php. This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |