|
From: <rc...@us...> - 2016-05-20 13:43:18
|
Revision: 7535
http://sourceforge.net/p/web-erp/reponame/7535
Author: rchacon
Date: 2016-05-20 13:43:16 +0000 (Fri, 20 May 2016)
Log Message:
-----------
Add a return link.
Modified Paths:
--------------
trunk/doc/Change.log
trunk/includes/Login.php
Modified: trunk/doc/Change.log
===================================================================
--- trunk/doc/Change.log 2016-05-20 05:19:41 UTC (rev 7534)
+++ trunk/doc/Change.log 2016-05-20 13:43:16 UTC (rev 7535)
@@ -2,6 +2,7 @@
22/5/16 Release 4.13
+20/5/16 RChacon: In Login.php, add a return link.
20/5/16 Paul Harness: CustomerAllocations.php consistent sort order adding by date and transno sorting for transactions on the same date
15/05/16 RChacon: In SelectCustomer.php, use a default map host if $map_host is empty.
15/05/16 RChacon: In AccountGroups.php, hide no printing elements.
Modified: trunk/includes/Login.php
===================================================================
--- trunk/includes/Login.php 2016-05-20 05:19:41 UTC (rev 7534)
+++ trunk/includes/Login.php 2016-05-20 13:43:16 UTC (rev 7535)
@@ -4,7 +4,8 @@
//include ('LanguageSetup.php');
if ((isset($AllowDemoMode)) AND ($AllowDemoMode == True) AND (!isset($demo_text))) {
- $demo_text = _('Login as user') .': <i>' . _('admin') . '</i><br />' ._('with password') . ': <i>' . _('weberp') . '</i>';
+ $demo_text = _('Login as user') .': <i>' . _('admin') . '</i><br />' ._('with password') . ': <i>' . _('weberp') . '</i>' .
+ '<br /><a href="../">' . _('Return') . '</a>';// This line is to add a return link.
} elseif (!isset($demo_text)) {
$demo_text = '';
}
@@ -90,8 +91,8 @@
echo '</select>';
}
} //end provision for backward compat
+?>
-?>
</span>
<br />
<span><?php echo _('User name'); ?>:</span><br />
@@ -104,8 +105,8 @@
if (isset($demo_text)){
echo $demo_text;
}
+?>
-?>
</div>
<input class="button" type="submit" value="<?php echo _('Login'); ?>" name="SubmitUser" />
</div>
|