From: <vv...@us...> - 2012-03-02 22:27:57
|
Revision: 5002 http://web-erp.svn.sourceforge.net/web-erp/?rev=5002&view=rev Author: vvs2012 Date: 2012-03-02 22:27:49 +0000 (Fri, 02 Mar 2012) Log Message: ----------- xhtml Modified Paths: -------------- trunk/AccountSections.php trunk/AddCustomerContacts.php trunk/AddCustomerNotes.php trunk/AddCustomerTypeNotes.php trunk/AgedDebtors.php trunk/AgedSuppliers.php trunk/Areas.php trunk/AuditTrail.php trunk/Customers.php trunk/FixedAssetCategories.php trunk/FixedAssetLocations.php trunk/FixedAssetRegister.php trunk/GLAccounts.php trunk/Locations.php trunk/SalesGLPostings.php trunk/Shippers.php trunk/SuppInvGRNs.php trunk/Suppliers.php trunk/WorkCentres.php trunk/Z_DataExport.php trunk/Z_poAddLanguage.php trunk/Z_poEditLangHeader.php trunk/Z_poRebuildDefault.php trunk/includes/footer.inc trunk/includes/header.inc Modified: trunk/AccountSections.php =================================================================== --- trunk/AccountSections.php 2012-03-02 09:46:44 UTC (rev 5001) +++ trunk/AccountSections.php 2012-03-02 22:27:49 UTC (rev 5002) @@ -126,7 +126,9 @@ $myrow = DB_fetch_array($result); if (DB_num_rows($result)>0) { prnMsg( _('Cannot delete this account section because general ledger accounts groups have been created using this section'),'warn'); - echo '<br />' . _('There are') . ' ' . $myrow['sections'] . ' ' . _('general ledger accounts groups that refer to this account section') . '</font>'; + echo '<div>'; + echo '<br />' . _('There are') . ' ' . $myrow['sections'] . ' ' . _('general ledger accounts groups that refer to this account section'); + echo '</div>'; } else { //Fetch section name @@ -164,10 +166,9 @@ $ErrMsg = _('Could not get account group sections because'); $result = DB_query($sql,$db,$ErrMsg); - echo '<p class="page_title_text"><img src="'.$rootpath.'/css/'.$theme.'/images/maintenance.png" title="' . _('Search') . '" alt="" />' . ' ' . $title.'</p> - <br />'; + echo '<p class="page_title_text"><img src="'.$rootpath.'/css/'.$theme.'/images/maintenance.png" title="' . _('Search') . '" alt="" />' . ' ' . $title.'<br /></p>'; - echo '<table name="SectionList" class="selection"> + echo '<table class="selection"> <tr> <th>' . _('Section Number') . '</th> <th>' . _('Section Description') . '</th> @@ -185,15 +186,15 @@ } echo '<td>' . $myrow['sectionid'] . '</td><td>' . $myrow['sectionname'] . '</td>'; - echo '<td><a href="' . htmlspecialchars($_SERVER['PHP_SELF'], ENT_QUOTES, 'UTF-8') . '?SelectedSectionID=' . $myrow['sectionid'] . '">' . _('Edit') . '</a></td>'; + echo '<td><a href="' . htmlspecialchars($_SERVER['PHP_SELF'] . '?SelectedSectionID=' . urlencode($myrow['sectionid']), ENT_QUOTES, 'UTF-8') . '">' . _('Edit') . '</a></td>'; if ( $myrow['sectionid'] == '1' or $myrow['sectionid'] == '2' ) { echo '<td><b>'._('Restricted').'</b></td>'; } else { - echo '<td><a href="' . htmlspecialchars($_SERVER['PHP_SELF'], ENT_QUOTES, 'UTF-8') . '?SelectedSectionID=' . $myrow['sectionid'] . '&delete=1">' . _('Delete') .'</a></td>'; + echo '<td><a href="' . htmlspecialchars($_SERVER['PHP_SELF'] . '?SelectedSectionID=' . urlencode($myrow['sectionid']) . '&delete=1', ENT_QUOTES, 'UTF-8') . '">' . _('Delete') .'</a></td>'; } echo '</tr>'; } //END WHILE LIST LOOP - echo '</table><br />'; + echo '</table>'; } //end of ifs and buts! @@ -203,7 +204,8 @@ if (! isset($_GET['delete'])) { - echo '<form method="post" name="AccountSections" action="' . htmlspecialchars($_SERVER['PHP_SELF'], ENT_QUOTES, 'UTF-8') . '">'; + echo '<form method="post" id="AccountSections" action="' . htmlspecialchars($_SERVER['PHP_SELF'], ENT_QUOTES, 'UTF-8') . '">'; + echo '<div><br />'; echo '<input type="hidden" name="FormID" value="' . $_SESSION['FormID'] . '" />'; if (isset($_GET['SelectedSectionID'])) { @@ -257,11 +259,11 @@ echo '</table><br />'; if (!isset($_GET['SelectedSectionID']) or $_GET['SelectedSectionID']=='') { - echo '<script>defaultControl(document.AccountSections.SectionID);</script>'; + echo '<script type="text/javascript">defaultControl(document.AccountSections.SectionID);</script>'; } else { - echo '<script>defaultControl(document.AccountSections.SectionName);</script>'; + echo '<script type="text/javascript">defaultControl(document.AccountSections.SectionName);</script>'; } - + echo '</div>'; echo '</form>'; } //end if record deleted no point displaying form to add record Modified: trunk/AddCustomerContacts.php =================================================================== --- trunk/AddCustomerContacts.php 2012-03-02 09:46:44 UTC (rev 5001) +++ trunk/AddCustomerContacts.php 2012-03-02 22:27:49 UTC (rev 5002) @@ -22,9 +22,9 @@ $Result = DB_query($SQLname,$db); $row = DB_fetch_array($Result); if (!isset($_GET['Id'])) { - echo '<p class="page_title_text"><img src="'.$rootpath.'/css/'.$theme.'/images/maintenance.png" title="' . _('Search') . '" alt="" />' . ' ' . _('Contacts for Customer') . ': <b>' .$row['name'].'</b></p><br />'; + echo '<p class="page_title_text"><img src="'.$rootpath.'/css/'.$theme.'/images/maintenance.png" title="' . _('Search') . '" alt="" />' . ' ' . _('Contacts for Customer') . ': <b>' . htmlspecialchars($row['name'], ENT_QUOTES, 'UTF-8') . '</b></p><br />'; } else { - echo '<p class="page_title_text"><img src="'.$rootpath.'/css/'.$theme.'/images/maintenance.png" title="' . _('Search') . '" alt="" />' . ' ' . _('Edit contact for'). ': <b>' .$row['name'].'</b></p><br />'; + echo '<p class="page_title_text"><img src="'.$rootpath.'/css/'.$theme.'/images/maintenance.png" title="' . _('Search') . '" alt="" />' . ' ' . _('Edit contact for'). ': <b>' . htmlspecialchars($row['name'], ENT_QUOTES, 'UTF-8') . '</b></p><br />'; } if ( isset($_POST['submit']) ) { @@ -143,10 +143,10 @@ printf('<td>%s</td> <td>%s</td> <td>%s</td> - <td><a href=mailto:%s>%s</a></td> + <td><a href="mailto:%s">%s</a></td> <td>%s</td> - <td><a href="%sId=%s&DebtorNo=%s">'. _('Edit').' </td> - <td><a href="%sId=%s&DebtorNo=%s&delete=1" onclick="return confirm(\'' . _('Are you sure you wish to delete this contact?') . '\');">'. _('Delete'). '</td></tr>', + <td><a href="%sId=%s&DebtorNo=%s">' . _('Edit') . '</a></td> + <td><a href="%sId=%s&DebtorNo=%s&delete=1" onclick="return confirm(\'' . _('Are you sure you wish to delete this contact?') . '\');">'. _('Delete'). '</a></td></tr>', $myrow['contactname'], $myrow['role'], $myrow['phoneno'], @@ -162,7 +162,7 @@ } //END WHILE LIST LOOP - echo '</table>'; + echo '</table><br />'; } if (isset($Id)) { echo '<div class="centre"><a href="' . htmlspecialchars($_SERVER['PHP_SELF'], ENT_QUOTES, 'UTF-8') . '?DebtorNo='.$DebtorNo .'">' . _('Review all contacts for this Customer') . '</a></div>'; @@ -171,6 +171,7 @@ if (!isset($_GET['delete'])) { echo '<form method="post" action="' . htmlspecialchars($_SERVER['PHP_SELF'], ENT_QUOTES, 'UTF-8') . '?DebtorNo='.$DebtorNo.'">'; + echo '<div>'; echo '<input type="hidden" name="FormID" value="' . $_SESSION['FormID'] . '" />'; if (isset($Id)) { @@ -248,10 +249,11 @@ echo '<tr> <td>' . _('Notes') . '</td>'; if (isset($_POST['ContactNotes'])) { - echo '<td><textarea name="ContactNotes">'. $_POST['ContactNotes'] . '</textarea>'; + echo '<td><textarea name="ContactNotes" rows="3" cols="40">'. $_POST['ContactNotes'] . '</textarea></td>'; } else { - echo '<td><textarea name="ContactNotes"></textarea>'; + echo '<td><textarea name="ContactNotes" rows="3" cols="40"></textarea></td>'; } + echo '</tr>'; echo '<tr> <td colspan="2"> <div class="centre"> @@ -260,6 +262,7 @@ </td> </tr> </table> + </div> </form>'; } //end if record deleted no point displaying form to add record Modified: trunk/AddCustomerNotes.php =================================================================== --- trunk/AddCustomerNotes.php 2012-03-02 09:46:44 UTC (rev 5001) +++ trunk/AddCustomerNotes.php 2012-03-02 22:27:49 UTC (rev 5002) @@ -162,6 +162,7 @@ if (!isset($_GET['delete'])) { echo '<form method="post" action="' . htmlspecialchars($_SERVER['PHP_SELF'], ENT_QUOTES, 'UTF-8') . '?DebtorNo=' . $DebtorNo . '">'; + echo '<div>'; echo '<input type="hidden" name="FormID" value="' . $_SESSION['FormID'] . '" />'; if (isset($Id)) { @@ -202,10 +203,10 @@ echo '<tr> <td>' . _('Contact Note'). '</td>'; if (isset($_POST['Note'])) { - echo '<td><textarea name="Note">' .$_POST['Note'] . '</textarea></td> + echo '<td><textarea name="Note" rows="3" cols="32">' .$_POST['Note'] . '</textarea></td> </tr>'; } else { - echo '<td><textarea name="Note"></textarea></td> + echo '<td><textarea name="Note" rows="3" cols="32"></textarea></td> </tr>'; } echo '<tr> @@ -243,6 +244,7 @@ </td> </tr> </table> + </div> </form>'; } //end if record deleted no point displaying form to add record Modified: trunk/AddCustomerTypeNotes.php =================================================================== --- trunk/AddCustomerTypeNotes.php 2012-03-02 09:46:44 UTC (rev 5001) +++ trunk/AddCustomerTypeNotes.php 2012-03-02 22:27:49 UTC (rev 5002) @@ -128,8 +128,8 @@ <td>%s</td> <td>%s</td> <td>%s</td> - <td><a href="%sId=%s&DebtorType=%s">'. _('Edit').' </td> - <td><a href="%sId=%s&DebtorType=%s&delete=1">'. _('Delete'). '</td></tr>', + <td><a href="%sId=%s&DebtorType=%s">'. _('Edit') . '</a></td> + <td><a href="%sId=%s&DebtorType=%s&delete=1">'. _('Delete') . '</a></td></tr>', $myrow['date'], $myrow['note'], $myrow['href'], @@ -154,6 +154,7 @@ if (!isset($_GET['delete'])) { echo '<form method="post" action="' . htmlspecialchars($_SERVER['PHP_SELF'], ENT_QUOTES, 'UTF-8') . '?DebtorType='.$DebtorType.'">'; + echo '<div>'; echo '<input type="hidden" name="FormID" value="' . $_SESSION['FormID'] . '" />'; if (isset($Id)) { @@ -200,7 +201,7 @@ echo '<tr> <td>'._('Contact Group Note').':</td> - <td><textarea name="note">'. $_POST['note'].'</textarea></td> + <td><textarea name="note" rows="3" cols="32">'. $_POST['note'].'</textarea></td> </tr> <tr> <td>'. _('Web site').':</td> @@ -217,8 +218,9 @@ </table> <br /> <div class="centre"> - <input type="Submit" name="submit" value="'. _('Enter Information').'" /> + <input type="submit" name="submit" value="'. _('Enter Information').'" /> </div> + </div> </form>'; } //end if record deleted no point displaying form to add record Modified: trunk/AgedDebtors.php =================================================================== --- trunk/AgedDebtors.php 2012-03-02 09:46:44 UTC (rev 5001) +++ trunk/AgedDebtors.php 2012-03-02 22:27:49 UTC (rev 5002) @@ -448,10 +448,11 @@ /*if $FromCriteria is not set then show a form to allow input */ echo '<form action="' . htmlspecialchars($_SERVER['PHP_SELF'], ENT_QUOTES, 'UTF-8') . '" method="post"> + <div> <input type="hidden" name="FormID" value="' . $_SESSION['FormID'] . '" /> <table class="selection"> <tr> - <td>' . _('From Customer Code') . ':' . '</font></td> + <td>' . _('From Customer Code') . ':' . '</td> <td><input tabindex="1" type="text" maxlength="6" size="7" name="FromCriteria" value="0" /></td> </tr> <tr> @@ -508,7 +509,9 @@ <br /> <div class="centre"> <input tabindex="7" type="submit" name="PrintPDF" value="' . _('Print PDF') , '" /> - </div>'; + </div> + </div> + </form>'; } include('includes/footer.inc'); } /*end of else not PrintPDF */ Modified: trunk/AgedSuppliers.php =================================================================== --- trunk/AgedSuppliers.php 2012-03-02 09:46:44 UTC (rev 5001) +++ trunk/AgedSuppliers.php 2012-03-02 22:27:49 UTC (rev 5002) @@ -279,11 +279,12 @@ /*if $FromCriteria is not set then show a form to allow input */ - echo '<form sction="' . htmlspecialchars($_SERVER['PHP_SELF'], ENT_QUOTES, 'UTF-8') . '" method="post"> + echo '<form action="' . htmlspecialchars($_SERVER['PHP_SELF'], ENT_QUOTES, 'UTF-8') . '" method="post"> + <div> <input type="hidden" name="FormID" value="' . $_SESSION['FormID'] . '" /> <table class="selection"> <tr> - <td>' . _('From Supplier Code') . ':</font></td> + <td>' . _('From Supplier Code') . ':</td> <td><input tabindex="1" type="text" maxlength="6" size="7" name="FromCriteria" value="1" /></td> </tr> <tr> @@ -324,7 +325,9 @@ <br /> <div class="centre"> <input tabindex="6" type="submit" name="PrintPDF" value="' . _('Print PDF') . '" /> - </div>'; + </div> + </div> + </form>'; } include('includes/footer.inc'); } /*end of else not PrintPDF */ Modified: trunk/Areas.php =================================================================== --- trunk/Areas.php 2012-03-02 09:46:44 UTC (rev 5001) +++ trunk/Areas.php 2012-03-02 22:27:49 UTC (rev 5002) @@ -161,7 +161,7 @@ echo '<td>' . $myrow['areacode'] . '</td> <td>' . $myrow['areadescription'] . '</td> <td><a href="' . htmlspecialchars($_SERVER['PHP_SELF'], ENT_QUOTES, 'UTF-8') . '?SelectedArea=' . $myrow['areacode'] . '">' . _('Edit') . '</a></td> - <td><a href="' . htmlspecialchars($_SERVER['PHP_SELF'], ENT_QUOTES, 'UTF-8') . '?SelectedArea=' . $myrow['areacode'] . '&delete=yes">' . _('Delete') . '</a></td> + <td><a href="' . htmlspecialchars($_SERVER['PHP_SELF'], ENT_QUOTES, 'UTF-8') . '?SelectedArea=' . $myrow['areacode'] . '&delete=yes">' . _('Delete') . '</a></td> <td><a href="SelectCustomer.php?Area=' . $myrow['areacode'] . '">' . _('View Customers from this Area') . '</a></td> </tr>'; } @@ -178,7 +178,8 @@ if (!isset($_GET['delete'])) { - echo '<form method="post" action="' . htmlspecialchars($_SERVER['PHP_SELF'], ENT_QUOTES, 'UTF-8') . '"><br />'; + echo '<form method="post" action="' . htmlspecialchars($_SERVER['PHP_SELF'], ENT_QUOTES, 'UTF-8') . '">'; + echo '<div><br />'; echo '<input type="hidden" name="FormID" value="' . $_SESSION['FormID'] . '" />'; if (isset($SelectedArea)) { @@ -229,6 +230,7 @@ </td> </tr> </table> + </div> </form>'; } //end if record deleted no point displaying form to add record Modified: trunk/AuditTrail.php =================================================================== --- trunk/AuditTrail.php 2012-03-02 09:46:44 UTC (rev 5001) +++ trunk/AuditTrail.php 2012-03-02 22:27:49 UTC (rev 5002) @@ -35,6 +35,7 @@ $UserResult = DB_query("SELECT userid FROM www_users",$db); echo '<form action="' . htmlspecialchars($_SERVER['PHP_SELF'],ENT_QUOTES,'UTF-8') . '" method="post">'; +echo '<div>'; echo '<input type="hidden" name="FormID" value="' . $_SESSION['FormID'] . '" />'; echo '<table class="selection">'; @@ -79,6 +80,7 @@ echo '</table><br />'; echo '<div class="centre"><input tabindex="5" type="submit" name="View" value="' . _('View') . '" /></div>'; +echo '</div>'; echo '</form>'; // View the audit trail Modified: trunk/Customers.php =================================================================== --- trunk/Customers.php 2012-03-02 09:46:44 UTC (rev 5001) +++ trunk/Customers.php 2012-03-02 22:27:49 UTC (rev 5002) @@ -1088,7 +1088,7 @@ echo '<br /> <div class="centre"> <input type="submit" name="submit" value="' . _('Update Customer') . '" /> - <input type="Submit" name="delete" value="' . _('Delete Customer') . '" onclick="return confirm(\'' . _('Are You Sure?') . '\');" />'; + <input type="submit" name="delete" value="' . _('Delete Customer') . '" onclick="return confirm(\'' . _('Are You Sure?') . '\');" />'; } echo '</div>'; Modified: trunk/FixedAssetCategories.php =================================================================== --- trunk/FixedAssetCategories.php 2012-03-02 09:46:44 UTC (rev 5001) +++ trunk/FixedAssetCategories.php 2012-03-02 22:27:49 UTC (rev 5002) @@ -341,7 +341,7 @@ <br />'; echo '<div class="centre"> - <input type="Submit" name="submit" value="' . _('Enter Information') . '" /> + <input type="submit" name="submit" value="' . _('Enter Information') . '" /> </div> </form>'; Modified: trunk/FixedAssetLocations.php =================================================================== --- trunk/FixedAssetLocations.php 2012-03-02 09:46:44 UTC (rev 5001) +++ trunk/FixedAssetLocations.php 2012-03-02 22:27:49 UTC (rev 5002) @@ -148,10 +148,10 @@ echo '<div class="centre">'; if (isset($_GET['SelectedLocation'])) { - echo '<input type="Submit" name="update" value="' . _('Update Information') . '" />'; + echo '<input type="submit" name="update" value="' . _('Update Information') . '" />'; echo '<br /> <br /> - <<input type="Submit" name="delete" value="' . _('Delete This Location') . '" />'; + <<input type="submit" name="delete" value="' . _('Delete This Location') . '" />'; } else { echo '<input type="submit" name="submit" value="' . _('Enter Information') . '" />'; } Modified: trunk/FixedAssetRegister.php =================================================================== --- trunk/FixedAssetRegister.php 2012-03-02 09:46:44 UTC (rev 5001) +++ trunk/FixedAssetRegister.php 2012-03-02 22:27:49 UTC (rev 5002) @@ -235,7 +235,7 @@ echo '<th style="text-align:right">' . locale_number_format($TotalNBV, $_SESSION['CompanyRecord']['decimalplaces']) . '</th>'; echo '<th style="text-align:right">' . locale_number_format($TotalDisposals, $_SESSION['CompanyRecord']['decimalplaces']) . '</th></tr>'; echo '</table>'; - echo '<br /><div class="centre"><input type="Submit" name="pdf" value="' . _('Print as a pdf') . '" /> '; + echo '<br /><div class="centre"><input type="submit" name="pdf" value="' . _('Print as a pdf') . '" /> '; echo '<input type="submit" name="csv" value="' . _('Print as CSV') . '" /></div></form>'; } } else { @@ -308,7 +308,7 @@ <div class="centre"> <input type="submit" name="submit" value="' . _('Show Assets') . '" /> <input type="submit" name="pdf" value="' . _('Print as a pdf') . '" /> - <input type="Submit" name = "csv" value="' . _('Print as CSV') . '" /> + <input type="submit" name = "csv" value="' . _('Print as CSV') . '" /> </div> </form>'; } Modified: trunk/GLAccounts.php =================================================================== --- trunk/GLAccounts.php 2012-03-02 09:46:44 UTC (rev 5001) +++ trunk/GLAccounts.php 2012-03-02 22:27:49 UTC (rev 5002) @@ -259,7 +259,7 @@ echo '</select></td></tr></table>'; - echo '<br /><div class="centre"><input type="Submit" name="submit" value="'. _('Enter Information') . '" /></div>'; + echo '<br /><div class="centre"><input type="submit" name="submit" value="'. _('Enter Information') . '" /></div>'; echo '</form>'; Modified: trunk/Locations.php =================================================================== --- trunk/Locations.php 2012-03-02 09:46:44 UTC (rev 5001) +++ trunk/Locations.php 2012-03-02 22:27:49 UTC (rev 5002) @@ -603,7 +603,7 @@ echo '</table> <br /> <div class="centre"> - <input type="Submit" name="submit" value="' . _('Enter Information') . '" /> + <input type="submit" name="submit" value="' . _('Enter Information') . '" /> </div> </form>'; Modified: trunk/SalesGLPostings.php =================================================================== --- trunk/SalesGLPostings.php 2012-03-02 09:46:44 UTC (rev 5001) +++ trunk/SalesGLPostings.php 2012-03-02 22:27:49 UTC (rev 5002) @@ -413,7 +413,7 @@ </tr> </table>'; - echo '<br /><div class="centre"><input type="Submit" name="submit" value="' . _('Enter Information') . '" /></div>'; + echo '<br /><div class="centre"><input type="submit" name="submit" value="' . _('Enter Information') . '" /></div>'; echo '</form>'; Modified: trunk/Shippers.php =================================================================== --- trunk/Shippers.php 2012-03-02 09:46:44 UTC (rev 5001) +++ trunk/Shippers.php 2012-03-02 22:27:49 UTC (rev 5002) @@ -199,7 +199,7 @@ <br /> <div class="centre"> - <input type="Submit" name="submit" value="'. _('Enter Information').'" /> + <input type="submit" name="submit" value="'. _('Enter Information').'" /> </div> </form>'; Modified: trunk/SuppInvGRNs.php =================================================================== --- trunk/SuppInvGRNs.php 2012-03-02 09:46:44 UTC (rev 5001) +++ trunk/SuppInvGRNs.php 2012-03-02 22:27:49 UTC (rev 5002) @@ -274,7 +274,7 @@ echo '<div class="centre"> <p> - <input type="Submit" name="ModifyGRN" value="' . _('Modify Line') . '" /> + <input type="submit" name="ModifyGRN" value="' . _('Modify Line') . '" /> </p> </div>'; Modified: trunk/Suppliers.php =================================================================== --- trunk/Suppliers.php 2012-03-02 09:46:44 UTC (rev 5001) +++ trunk/Suppliers.php 2012-03-02 22:27:49 UTC (rev 5002) @@ -772,7 +772,7 @@ echo '</select></td></tr> </table> - <p><div class="centre"><input type="Submit" name="submit" value="' . _('Insert New Supplier') . '" />'; + <p><div class="centre"><input type="submit" name="submit" value="' . _('Insert New Supplier') . '" />'; echo '</div></form>'; } else { Modified: trunk/WorkCentres.php =================================================================== --- trunk/WorkCentres.php 2012-03-02 09:46:44 UTC (rev 5001) +++ trunk/WorkCentres.php 2012-03-02 22:27:49 UTC (rev 5002) @@ -276,7 +276,7 @@ echo '<br /> <div class="centre"> - <input type="Submit" name="submit" value="' . _('Enter Information') . '" /> + <input type="submit" name="submit" value="' . _('Enter Information') . '" /> </div>'; if (!isset($_GET['SelectedWC']) or $_GET['SelectedWC']=='') { Modified: trunk/Z_DataExport.php =================================================================== --- trunk/Z_DataExport.php 2012-03-02 09:46:44 UTC (rev 5001) +++ trunk/Z_DataExport.php 2012-03-02 22:27:49 UTC (rev 5002) @@ -633,7 +633,7 @@ echo '<table>'; echo '<tr><th colspan="2">' . _('Security User List Export') . '</th></tr>'; echo '</table>'; - echo '<div class="centre"><input type="Submit" name="secuserlist" value="' . _('Export') . '" /></div>'; + echo '<div class="centre"><input type="submit" name="secuserlist" value="' . _('Export') . '" /></div>'; echo '</form><br />'; Modified: trunk/Z_poAddLanguage.php =================================================================== --- trunk/Z_poAddLanguage.php 2012-03-02 09:46:44 UTC (rev 5001) +++ trunk/Z_poAddLanguage.php 2012-03-02 22:27:49 UTC (rev 5002) @@ -91,7 +91,7 @@ echo '<td><input type="text" size="5" name="NewLanguage" />'; echo '</td></tr></table>'; -echo '<br /><input type="Submit" name="submit" value="' . _('Proceed') . '" /> '; +echo '<br /><input type="submit" name="submit" value="' . _('Proceed') . '" /> '; echo '</form>'; include('includes/footer.inc'); Modified: trunk/Z_poEditLangHeader.php =================================================================== --- trunk/Z_poEditLangHeader.php 2012-03-02 09:46:44 UTC (rev 5001) +++ trunk/Z_poEditLangHeader.php 2012-03-02 22:27:49 UTC (rev 5002) @@ -103,7 +103,7 @@ } echo '</table>'; - echo '<br /><div class="centre"><input type="Submit" name="submit" value="' . _('Modify') . '" /> '; + echo '<br /><div class="centre"><input type="submit" name="submit" value="' . _('Modify') . '" /> '; echo '<input type="hidden" name="language" value="' . $_POST['language'] . '" /></div>'; echo '</form>'; } Modified: trunk/Z_poRebuildDefault.php =================================================================== --- trunk/Z_poRebuildDefault.php 2012-03-02 09:46:44 UTC (rev 5001) +++ trunk/Z_poRebuildDefault.php 2012-03-02 22:27:49 UTC (rev 5002) @@ -51,7 +51,7 @@ echo '<form method="post" action=' . htmlspecialchars($_SERVER['PHP_SELF'],ENT_QUOTES,'UTF-8') . '?' . SID . '>'; echo '<input type="hidden" name="FormID" value="' . $_SESSION['FormID'] . '" />'; - echo '<input type="Submit" name="submit" value="' . _('Proceed') . '" /> '; + echo '<input type="submit" name="submit" value="' . _('Proceed') . '" /> '; echo '</form>'; echo '</div>'; Modified: trunk/includes/footer.inc =================================================================== --- trunk/includes/footer.inc 2012-03-02 09:46:44 UTC (rev 5001) +++ trunk/includes/footer.inc 2012-03-02 22:27:49 UTC (rev 5002) @@ -19,6 +19,7 @@ echo '</table>'; +echo '</div>'; echo '</body>'; echo '</html>'; ?> \ No newline at end of file Modified: trunk/includes/header.inc =================================================================== --- trunk/includes/header.inc 2012-03-02 09:46:44 UTC (rev 5001) +++ trunk/includes/header.inc 2012-03-02 22:27:49 UTC (rev 5002) @@ -32,6 +32,7 @@ echo '</head>'; echo '<body>'; + echo '<div id="canvas">'; echo '<table class="callout_main" cellpadding="0" cellspacing="0">'; echo '<tr>'; echo '<td colspan="2" rowspan="2">'; This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |