cvs: docweb /scripts checkent.php
[email protected] ("Vincent Gevers")
| Newsgroups | php.doc.web |
|---|---|
| Message-ID | <cvsvincent1106730668@cvsserver> |
vincent Wed Jan 26 04:11:08 2005 EDT
Modified files:
/docweb/scripts checkent.php
Log:
let the script tell us what it is checking
http://cvs.php.net/diff.php/docweb/scripts/checkent.php?r1=1.18&r2=1.19&ty=u
Index: docweb/scripts/checkent.php
diff -u docweb/scripts/checkent.php:1.18 docweb/scripts/checkent.php:1.19
--- docweb/scripts/checkent.php:1.18 Tue Jan 25 13:15:40 2005
+++ docweb/scripts/checkent.php Wed Jan 26 04:11:07 2005
@@ -19,7 +19,7 @@
| Mehdi Achour <[email protected]> |
| Sean Coates <[email protected]> |
+----------------------------------------------------------------------+
-$Id: checkent.php,v 1.18 2005/01/25 18:15:40 nlopess Exp $
+$Id: checkent.php,v 1.19 2005/01/26 09:11:07 vincent Exp $
*/
set_time_limit(0);
@@ -57,7 +57,8 @@
require_once '../include/lib_url_entities.inc.php';
echo "DocWeb URL Entity Checker.\n";
-echo "Using forks? ". (NUM_ALLOWED_FORKS ? 'yes: '. NUM_ALLOWED_FORKS : 'no') ."\n\n";
+echo "Using forks? ". (NUM_ALLOWED_FORKS ? 'yes: '. NUM_ALLOWED_FORKS : 'no') . "\n";
+echo "Checking " . $entType . "\n\n";
// create a new database (remove old first, if exists)
if (is_file(URL_ENT_SQLITE_FILE) && !unlink(URL_ENT_SQLITE_FILE)) {