From: <tim...@us...> - 2012-08-26 11:50:55
|
Revision: 5610 http://web-erp.svn.sourceforge.net/web-erp/?rev=5610&view=rev Author: tim_schofield Date: 2012-08-26 11:50:48 +0000 (Sun, 26 Aug 2012) Log Message: ----------- Fix typo Modified Paths: -------------- trunk/includes/ConnectDB_mysql.inc trunk/includes/ConnectDB_mysqli.inc Modified: trunk/includes/ConnectDB_mysql.inc =================================================================== --- trunk/includes/ConnectDB_mysql.inc 2012-08-26 11:48:53 UTC (rev 5609) +++ trunk/includes/ConnectDB_mysql.inc 2012-08-26 11:50:48 UTC (rev 5610) @@ -22,7 +22,7 @@ echo '<br />' . _('The configuration in the file config.php for the database user name and password do not provide the information required to connect to the database server'); session_unset(); session_destroy(); - echo '<p>' . _('Click') . ' ' . '<a href="index.php">' . _('here') . '</a>' , ' ' ._('to try logging in again') . '</p>'; + echo '<p>' . _('Click') . ' ' . '<a href="index.php">' . _('here') . '</a>' . ' ' ._('to try logging in again') . '</p>'; exit; } Modified: trunk/includes/ConnectDB_mysqli.inc =================================================================== --- trunk/includes/ConnectDB_mysqli.inc 2012-08-26 11:48:53 UTC (rev 5609) +++ trunk/includes/ConnectDB_mysqli.inc 2012-08-26 11:50:48 UTC (rev 5610) @@ -27,7 +27,7 @@ printf("Connect failed: %s\n", mysqli_connect_error()); session_unset(); session_destroy(); - echo '<p>' . _('Click') . ' ' . '<a href="index.php">' . _('here') . '</a>' , ' ' ._('to try logging in again') . '</p>'; + echo '<p>' . _('Click') . ' ' . '<a href="index.php">' . _('here') . '</a>' . ' ' ._('to try logging in again') . '</p>'; exit(); } This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |