diff options
| author | artem <artem@97f52cf1-0a1b-0410-bd0e-c28be96e8082> | 2008-01-21 15:44:31 +0000 |
|---|---|---|
| committer | artem <artem@97f52cf1-0a1b-0410-bd0e-c28be96e8082> | 2008-01-21 15:44:31 +0000 |
| commit | b6f0565a4e0809d29950d26e95050ff4a3deaa8f (patch) | |
| tree | 4965433b13f68c7c51119e0a7744ce7f6004c7fe /frontends/php/include/copt.lib.php | |
| parent | 3e8c5c43f93bdc2cea90a021eedee58327d83641 (diff) | |
| download | zabbix-b6f0565a4e0809d29950d26e95050ff4a3deaa8f.tar.gz zabbix-b6f0565a4e0809d29950d26e95050ff4a3deaa8f.tar.xz zabbix-b6f0565a4e0809d29950d26e95050ff4a3deaa8f.zip | |
- [DEV-97] added screen for easier creation of locales (Artem);
- [ZBX-253] fixes problem in frontend with long int values (Artem)
git-svn-id: svn://svn.zabbix.com/trunk@5268 97f52cf1-0a1b-0410-bd0e-c28be96e8082
Diffstat (limited to 'frontends/php/include/copt.lib.php')
| -rw-r--r-- | frontends/php/include/copt.lib.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/frontends/php/include/copt.lib.php b/frontends/php/include/copt.lib.php index a9e67217..139a0a95 100644 --- a/frontends/php/include/copt.lib.php +++ b/frontends/php/include/copt.lib.php @@ -42,9 +42,9 @@ vs ctype_digit($foo); - 5)in_array + 5)_in_array $keys = array("apples", "oranges", "mangoes", "tomatoes", "pickles"); - if (in_array('mangoes', $keys)) { ... } + if (_in_array('mangoes', $keys)) { ... } vs $keys = array("apples" => 1, "oranges" => 1, "mangoes" => 1, "tomatoes" => 1, "pickles" => 1); if (isset($keys['mangoes'])) { ... } |
