svn: /web/doc-editor/trunk/php/ ToolsCheckEntities.php
[email protected] (Philip Olson)
| Newsgroups | php.doc.web |
|---|---|
| Message-ID | <[email protected]> |
philip Tue, 08 Nov 2011 16:47:03 +0000
Revision: http://svn.php.net/viewvc?view=revision&revision=318916
Log:
Added url.pecl.package to the skipped entities check list
Changed paths:
U web/doc-editor/trunk/php/ToolsCheckEntities.php
Modified: web/doc-editor/trunk/php/ToolsCheckEntities.php
===================================================================
--- web/doc-editor/trunk/php/ToolsCheckEntities.php 2011-11-08 16:40:57 UTC (rev 318915)
+++ web/doc-editor/trunk/php/ToolsCheckEntities.php 2011-11-08 16:47:03 UTC (rev 318916)
@@ -40,8 +40,10 @@
$project = $am->project;
// This entities will not be checked as there are always wrong. We use it into the manual like this : "&url.foo;bar"
+ // Entries should not include the & and ;
$this->EntitiesNotChecked = Array(
- "url.pecl.package.get" // without & and ;
+ "url.pecl.package.get",
+ "url.pecl.package",
);
$this->urlConnectTimeout = 10;