svn: /web/doc-editor/trunk/scripts/cron/ check_entities.php
[email protected] (Yannick Torres)
| Newsgroups | php.doc.web |
|---|---|
| Message-ID | <[email protected]> |
yannick Wed, 03 Aug 2011 17:29:31 +0000
Revision: http://svn.php.net/viewvc?view=revision&revision=314203
Log:
Fix bugs #55350 : only check entities for php project
Bug: https://bugs.php.net/55350 (Open) entity checker checking wrong project
Changed paths:
U web/doc-editor/trunk/scripts/cron/check_entities.php
Modified: web/doc-editor/trunk/scripts/cron/check_entities.php
===================================================================
--- web/doc-editor/trunk/scripts/cron/check_entities.php 2011-08-03 17:16:04 UTC (rev 314202)
+++ web/doc-editor/trunk/scripts/cron/check_entities.php 2011-08-03 17:29:31 UTC (rev 314203)
@@ -19,6 +19,10 @@
while( list($key, $project) = each($availableProject) ) {
+ if( $project['code'] != "php" ) {
+ continue;
+ }
+
// Define it as a project
$pm->setProject($project['code']);