[Weberp-svn] SF.net SVN: weberp:[7063] trunk
Brought to you by:
sotandeka,
tim_schofield
From: <tim...@us...> - 2011-07-26 20:46:20
|
Revision: 7063 http://weberp.svn.sourceforge.net/weberp/?rev=7063&view=rev Author: tim_schofield Date: 2011-07-26 20:46:14 +0000 (Tue, 26 Jul 2011) Log Message: ----------- XHTML corrections to code Modified Paths: -------------- trunk/BOMExtendedQty.php trunk/BOMIndented.php trunk/BOMIndentedReverse.php trunk/CustomerTypes.php trunk/includes/header.inc Modified: trunk/BOMExtendedQty.php =================================================================== --- trunk/BOMExtendedQty.php 2011-07-26 20:45:48 UTC (rev 7062) +++ trunk/BOMExtendedQty.php 2011-07-26 20:46:14 UTC (rev 7063) @@ -214,7 +214,7 @@ // Parameters for addTextWrap are defined in /includes/class.pdf.php // 1) X position 2) Y position 3) Width - // 4) Height 5) Text 6) Alignment 7) Border 8) Fill - True to use SetFillColor + // 4) Height 5) text 6) Alignment 7) Border 8) Fill - True to use SetFillColor // and False to set to transparent $Difference = $myrow['quantity'] - ($myrow['qoh'] + $myrow['poqty'] + $myrow['woqty']); if (($_POST['Select'] == 'All') or ($Difference > 0)) { Modified: trunk/BOMIndented.php =================================================================== --- trunk/BOMIndented.php 2011-07-26 20:45:48 UTC (rev 7062) +++ trunk/BOMIndented.php 2011-07-26 20:46:14 UTC (rev 7063) @@ -202,7 +202,7 @@ // Parameters for addTextWrap are defined in /includes/class.pdf.php // 1) X position 2) Y position 3) Width - // 4) Height 5) Text 6) Alignment 7) Border 8) Fill - True to use SetFillColor + // 4) Height 5) text 6) Alignment 7) Border 8) Fill - True to use SetFillColor // and False to set to transparent $pdf->addTextWrap($Left_Margin+($myrow['level'] * 5),$YPos,90,$FontSize,$myrow['component'],'',0,$fill); $pdf->addTextWrap(160,$YPos,20,$FontSize,$myrow['mbflag'],'',0,$fill); Modified: trunk/BOMIndentedReverse.php =================================================================== --- trunk/BOMIndentedReverse.php 2011-07-26 20:45:48 UTC (rev 7062) +++ trunk/BOMIndentedReverse.php 2011-07-26 20:46:14 UTC (rev 7063) @@ -202,7 +202,7 @@ // Parameters for addTextWrap are defined in /includes/class.pdf.php // 1) X position 2) Y position 3) Width - // 4) Height 5) Text 6) Alignment 7) Border 8) Fill - True to use SetFillColor + // 4) Height 5) text 6) Alignment 7) Border 8) Fill - True to use SetFillColor // and False to set to transparent $pdf->addTextWrap($Left_Margin+($myrow['level'] * 5),$YPos,90,$FontSize,$myrow['parent'],'',0,$fill); $pdf->addTextWrap(160,$YPos,20,$FontSize,$myrow['mbflag'],'',0,$fill); Modified: trunk/CustomerTypes.php =================================================================== --- trunk/CustomerTypes.php 2011-07-26 20:45:48 UTC (rev 7062) +++ trunk/CustomerTypes.php 2011-07-26 20:46:14 UTC (rev 7063) @@ -260,7 +260,7 @@ if (!isset($_POST['typename'])) { $_POST['typename']=''; } - echo '<tr><td>' . _('Type Name') . ':</td><td><input type="Text" name="typename" value="' . $_POST['typename'] . '"></td></tr>'; + echo '<tr><td>' . _('Type Name') . ':</td><td><input type="text" name="typename" value="' . $_POST['typename'] . '" /></td></tr>'; echo '</td></tr></table>'; // close main table Modified: trunk/includes/header.inc =================================================================== --- trunk/includes/header.inc 2011-07-26 20:45:48 UTC (rev 7062) +++ trunk/includes/header.inc 2011-07-26 20:46:14 UTC (rev 7063) @@ -41,7 +41,7 @@ echo '<tr>'; echo '<td align="left" style="width:100%;" class="quick_menu_left">'; // Use icons for company and user data, saves screen realestate, use ALT tag in case theme icon not avail. - echo '<img src="'.$rootpath.'/css/'.$theme.'/images/company.png" TITLE="' . _('Company') . '" ALT="' . _('Company') . '"></img>'; + echo '<img src="'.$rootpath.'/css/'.$theme.'/images/company.png" title="' . _('Company') . '" ALT="' . _('Company') . '"></img>'; echo ' ' . stripslashes($_SESSION['CompanyRecord']['coyname']) . ' <a href="' . $rootpath . '/UserSettings.php"><img src="'.$rootpath.'/css/'.$theme.'/images/user.png" TITLE="User" ALT="' . _('User') . '"> </img>' . stripslashes($_SESSION['UsersRealName']) . '</a>'; // Make the title text a class, can be set to display:none is some themes echo '<br /><font class="header_title"> ' . $title . '</font></td>'; This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |