CVS Commit by dpage: Use the current mirrors database on the pseudo
require($_SERVER['DOCUMENT_ROOT']."/includes/top_config.php");
?>
CVS Commit by dpage: Use the current mirrors database on the pseudo
Log Message:
-----------
Use the current mirrors database on the pseudo hub.org DB server.
Modified Files:
--------------
www/pgadmin3/cnt:
cnt_mirrors.php (r1.11 -> r1.12)
Index: cnt_mirrors.php
===================================================================
RCS file: /projects/www/pgadmin3/cnt/cnt_mirrors.php,v
retrieving revision 1.11
retrieving revision 1.12
diff -Lpgadmin3/cnt/cnt_mirrors.php -Lpgadmin3/cnt/cnt_mirrors.php -u -w -r1.11 -r1.12
--- pgadmin3/cnt/cnt_mirrors.php
+++ pgadmin3/cnt/cnt_mirrors.php
@@ -8,7 +8,7 @@
// Create a connexion
//
if(!$conn) {
- echo _("Could not connect to the mirror database.")."<br>";
+ echo _("Could not connect to the mirror database.")."<br><br>";
echo sprintf(_("Feel free to download pgAdmin from <a href='%s'>PostgreSQL primary FTP site</a>."), "http://www.postgresql.org/ftpsite")."<br>";
$_error = true;
}
@@ -25,7 +25,7 @@
if(!$res) {
- echo _("Could not connect to the mirror table.")."<br>";
+ echo _("Could not connect to the mirror table.")."<br><br>";
echo sprintf(_("Feel free to download pgAdmin from <a href='%s'>PostgreSQL primary FTP site</a>."), "http://www.postgresql.org/ftpsite")."<br>";
$_error = true;
}
@@ -41,7 +41,7 @@
//
$ii = pg_num_rows($res);
if($ii == 0) {
- echo _("No mirrors could be found.")."<br>";
+ echo _("No mirrors could be found.")."<br><br>";
echo sprintf(_("Feel free to download pgAdmin from <a href='%s'>PostgreSQL primary FTP site</a>."), "http://www.postgresql.org/ftpsite/pgadmin3/")."<br>";
} else {
$content = "<table width='100%'><tr><td colspan=$numcells align=left><font size=4>$prompt<br><br></font></td>\n";
Home |
Main Index |
Thread Index