From: <vv...@us...> - 2012-02-25 23:23:59
|
Revision: 4972 http://web-erp.svn.sourceforge.net/web-erp/?rev=4972&view=rev Author: vvs2012 Date: 2012-02-25 23:23:53 +0000 (Sat, 25 Feb 2012) Log Message: ----------- xhtml cleanup Modified Paths: -------------- trunk/PDFChequeListing.php trunk/PDFCustTransListing.php Modified: trunk/PDFChequeListing.php =================================================================== --- trunk/PDFChequeListing.php 2012-02-25 22:45:53 UTC (rev 4971) +++ trunk/PDFChequeListing.php 2012-02-25 23:23:53 UTC (rev 4972) @@ -32,7 +32,7 @@ echo '<form method="post" action="' . htmlspecialchars($_SERVER['PHP_SELF'],ENT_QUOTES,'UTF-8') . '">'; - echo '<input type="hidden" name="FormID" value="' . $_SESSION['FormID'] . '" />'; + echo '<div><input type="hidden" name="FormID" value="' . $_SESSION['FormID'] . '" /></div>'; echo '<table class="selection"> <tr> <td>' . _('Enter the date from which cheques are to be listed') . ':</td> @@ -64,10 +64,11 @@ </select></td> </tr> </table> - <br /> <div class="centre"> + <br /> <input type="submit" name="Go" value="' . _('Create PDF') . '" /> - </div>'; + </div> + </form>'; include('includes/footer.inc'); exit; Modified: trunk/PDFCustTransListing.php =================================================================== --- trunk/PDFCustTransListing.php 2012-02-25 22:45:53 UTC (rev 4971) +++ trunk/PDFCustTransListing.php 2012-02-25 23:23:53 UTC (rev 4972) @@ -27,27 +27,27 @@ } echo '<form method="post" action="' . htmlspecialchars($_SERVER['PHP_SELF'],ENT_QUOTES,'UTF-8') . '">'; - echo '<input type="hidden" name="FormID" value="' . $_SESSION['FormID'] . '" />'; + echo '<div><input type="hidden" name="FormID" value="' . $_SESSION['FormID'] . '" /></div>'; echo '<table class="selection"> <tr> <td>' . _('Enter the date for which the transactions are to be listed') . ':</td> - <td><input type="text" name="Date" maxlength="10" size="10" class=date alt="' . $_SESSION['DefaultDateFormat'] . '" value="' . Date($_SESSION['DefaultDateFormat']) . '" /></td> + <td><input type="text" name="Date" maxlength="10" size="10" class="date" alt="' . $_SESSION['DefaultDateFormat'] . '" value="' . Date($_SESSION['DefaultDateFormat']) . '" /></td> </tr>'; echo '<tr><td>' . _('Transaction type') . '</td> <td><select name="TransType"> <option value="10">' . _('Invoices') . '</option> <option value="11">' . _('Credit Notes') . '</option> - <option value="12">' . _('Receipts') . '</option> - </select></td> - </tr>'; + <option value="12">' . _('Receipts') . '</option>'; echo '</select></td></tr> </table> - <br /> <div class="centre"> + <br /> <input type="submit" name="Go" value="' . _('Create PDF') . '" /> - </div>'; + </div> + </form> + </div>'; include('includes/footer.inc'); exit; This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |