Index: trunk/tools/code-utils/check-vars.php |
— | — | @@ -54,10 +54,12 @@ |
55 | 55 | static $mKnownFunctionsDefault = array(); |
56 | 56 | static $mConstantsDefault = array(); |
57 | 57 | |
58 | | - static $constantIgnorePrefixes = array( "PGSQL_", "OCI_", "SQLT_BLOB", "DB2_", "XMLREADER_", "SQLSRV_" ); # Ignore constants with these prefixes |
| 58 | + # Ignore constants with these prefixes: |
| 59 | + static $constantIgnorePrefixes = array( "PGSQL_", "OCI_", "SQLT_BLOB", "DB2_", "XMLREADER_", "SQLSRV_" ); |
| 60 | + # Ignore functions with these prefixes: |
59 | 61 | static $functionIgnorePrefixes = array( "pg_", "oci_", "db2_", "gmp_", "sqlsrv_", "exif_", "fss_", "tidy_", |
60 | 62 | "apc_", "eaccelerator_", "xcache_", "wincache_", "apache_", "xdiff_", "wikidiff2_", "parsekit_", |
61 | | - "wddx_", "setproctitle", "utf8_", "normalizer_" ); # Ignore functions with these prefixes |
| 63 | + "wddx_", "setproctitle", "utf8_", "normalizer_", "dba_", "pcntl_", "finfo_" ); |
62 | 64 | protected $generateDeprecatedList = false; |
63 | 65 | |
64 | 66 | /* Values for status */ |