From: <tim...@us...> - 2012-01-18 21:20:25
|
Revision: 4802 http://web-erp.svn.sourceforge.net/web-erp/?rev=4802&view=rev Author: tim_schofield Date: 2012-01-18 21:20:19 +0000 (Wed, 18 Jan 2012) Log Message: ----------- Add the email field to the screen output of the search Modified Paths: -------------- trunk/SelectCustomer.php Modified: trunk/SelectCustomer.php =================================================================== --- trunk/SelectCustomer.php 2012-01-18 21:02:16 UTC (rev 4801) +++ trunk/SelectCustomer.php 2012-01-18 21:20:19 UTC (rev 4802) @@ -418,6 +418,7 @@ <th>' . _('Type') . '</th> <th>' . _('Phone') . '</th> <th>' . _('Fax') . '</th> + <th>' . _('Email') . '</th> </tr>'; echo $TableHeader; $j = 1; @@ -454,7 +455,9 @@ <td><font size=1>' . $myrow['contactname'] . '</font></td> <td><font size=1>' . $myrow['typename'] . '</font></td> <td><font size=1>' . $myrow['phoneno'] . '</font></td> - <td><font size=1>' . $myrow['faxno'] . '</font></td></tr>'; + <td><font size=1>' . $myrow['faxno'] . '</font></td> + <td><font size=1>' . $myrow['email'] . '</font></td> + </tr>'; $i++; $j++;//row counter if ($j == 11 AND ($RowIndex + 1 != $_SESSION['DisplayRecordsMax'])) { This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |