From: <tim...@us...> - 2010-10-02 15:52:35
|
Revision: 4091 http://web-erp.svn.sourceforge.net/web-erp/?rev=4091&view=rev Author: tim_schofield Date: 2010-10-02 15:52:29 +0000 (Sat, 02 Oct 2010) Log Message: ----------- Bug fixes and layout changes Modified Paths: -------------- trunk/AuditTrail.php trunk/doc/Change.log.html Modified: trunk/AuditTrail.php =================================================================== --- trunk/AuditTrail.php 2010-10-02 15:04:45 UTC (rev 4090) +++ trunk/AuditTrail.php 2010-10-02 15:52:29 UTC (rev 4091) @@ -10,6 +10,8 @@ include('includes/header.inc'); +echo '<p class="page_title_text"><img src="'.$rootpath.'/css/'.$theme.'/images/maintenance.png" title="' . _('Search') . '" alt="">' . ' ' . $title.'</p>'; + if (!isset($_POST['FromDate'])){ $_POST['FromDate'] = Date($_SESSION['DefaultDateFormat'],mktime(0,0,0, Date('m')-$_SESSION['MonthsAuditTrail'])); } @@ -30,7 +32,7 @@ echo '<form action=' . $_SERVER['PHP_SELF'] . '?' . SID . ' method=post>'; echo '<input type="hidden" name="FormID" value="' . $_SESSION['FormID'] . '" />'; -echo '<table>'; +echo '<table class=selection>'; echo '<tr><td>'. _('From Date') . ' ' . $_SESSION['DefaultDateFormat'] .'</td> <td><input tabindex="1" type=text class=date alt="'.$_SESSION['DefaultDateFormat'].'" name="FromDate" size="11" maxlength="10" value=' .$_POST['FromDate'].'></td></tr>'; @@ -62,8 +64,8 @@ } echo '</select></td></tr>'; -echo "<tr><td></td><td><input tabindex='5' type=submit name=View value='" . _('View') . "'></td></tr>"; -echo '</table></BR>'; +echo '</table><br />'; +echo "<div class=centre><input tabindex='5' type=submit name=View value='" . _('View') . "'></div>"; echo '</form>'; // View the audit trail @@ -138,7 +140,7 @@ } $result = DB_query($sql,$db); - echo '<table border=0 width="100%">'; + echo '<table border=0 width="98%" class=selection>'; echo '<tr><th>' . _('Date/Time') . '</th> <th>' . _('User') . '</th> <th>' . _('Type') . '</th> @@ -193,4 +195,4 @@ } include('includes/footer.inc'); -?> +?> \ No newline at end of file Modified: trunk/doc/Change.log.html =================================================================== --- trunk/doc/Change.log.html 2010-10-02 15:04:45 UTC (rev 4090) +++ trunk/doc/Change.log.html 2010-10-02 15:52:29 UTC (rev 4091) @@ -1,5 +1,6 @@ <p><font SIZE=4 COLOR=BLUE><b>webERP Change Log</b></font></p> <p></p> +<p>02/10/10 Tim: AuditTrail.php - Bug fixes and layout changes</p> <p>02/10/10 Tim: DailySalesInquiry.php - Bug fixes and layout changes</p> <p>02/10/10 Tim: session.inc - Corrections to sql quoting. Resolves bug 3023782</p> <p>02/10/10 Tim: ppdf_tpl.php - Make php 5.3 compatible</p> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |