|
From: Ulf E. <ulf...@us...> - 2005-05-24 20:51:09
|
Update of /cvsroot/phpbt/phpbt/templates/default In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv16751 Modified Files: install-dbsuccess.html install-dbfailure.html Log Message: Emphasize success and failure messages Index: install-dbsuccess.html =================================================================== RCS file: /cvsroot/phpbt/phpbt/templates/default/install-dbsuccess.html,v retrieving revision 1.2 retrieving revision 1.3 diff -u -r1.2 -r1.3 --- install-dbsuccess.html 25 Oct 2004 12:07:04 -0000 1.2 +++ install-dbsuccess.html 24 May 2005 20:50:58 -0000 1.3 @@ -4,7 +4,11 @@ <link rel="StyleSheet" href="styles/default.css" type="text/css"> </head> <body> - <br><br> + <br> + <div align="center"> + <?php echo translate("DB Test Success"); ?> + </div> + <br> <div align="center"> <?php printf(translate("The installation script successfully connected to the database <b>%s</b> on the host <b>%s</b> using the specified username and password.<br>Congratulations!"), $params['db_database'], $params['db_host']); ?> <br> Index: install-dbfailure.html =================================================================== RCS file: /cvsroot/phpbt/phpbt/templates/default/install-dbfailure.html,v retrieving revision 1.2 retrieving revision 1.3 diff -u -r1.2 -r1.3 --- install-dbfailure.html 25 Oct 2004 12:07:04 -0000 1.2 +++ install-dbfailure.html 24 May 2005 20:50:58 -0000 1.3 @@ -4,7 +4,11 @@ <link rel="StyleSheet" href="styles/default.css" type="text/css"> </head> <body> - <br><br> + <br> + <div class="error"> + <?php echo translate("DB Test Failure"); ?> + </div> + <br> <div align="center"> <?php printf(translate("The installation script could not connect to the database <b>%s</b> on the host <b>%s</b> using the specified username and password.<br>Please check these details are correct and that the database already exists then retry."), $params['db_database'], $params['db_host']); ?> <br> |