summaryrefslogtreecommitdiff
path: root/src/plugins/php
diff options
context:
space:
mode:
authorSébastien Helleu <flashcode@flashtux.org>2023-01-15 17:41:21 +0100
committerSébastien Helleu <flashcode@flashtux.org>2023-01-28 15:13:54 +0100
commit489c26420220627a606805ead43a2bdc4d5545c1 (patch)
tree65c6aa2989f23611e16ceef75ec858184cf26955 /src/plugins/php
parent5bd97b9630f0e6ab9046c9b68c164bff7f2d1972 (diff)
downloadweechat-489c26420220627a606805ead43a2bdc4d5545c1.zip
core, plugins: make info, info_hashtable and infolist case sensitive (issue #1872)
Diffstat (limited to 'src/plugins/php')
-rw-r--r--src/plugins/php/weechat-php.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/php/weechat-php.c b/src/plugins/php/weechat-php.c
index 8528a3e5f..928e0e268 100644
--- a/src/plugins/php/weechat-php.c
+++ b/src/plugins/php/weechat-php.c
@@ -1113,7 +1113,7 @@ weechat_php_infolist_cb (const void *pointer, void *data,
if (!infolist_name || !infolist_name[0])
return NULL;
- if (weechat_strcasecmp (infolist_name, "php_script") == 0)
+ if (weechat_strcmp (infolist_name, "php_script") == 0)
{
return plugin_script_infolist_list_scripts (weechat_php_plugin,
php_scripts, obj_pointer,