diff options
author | Sébastien Helleu <flashcode@flashtux.org> | 2022-03-12 10:39:34 +0100 |
---|---|---|
committer | Sébastien Helleu <flashcode@flashtux.org> | 2022-03-13 10:35:29 +0100 |
commit | e5e3a9d2da382c7260b305e823a693734189a338 (patch) | |
tree | 50a888febc6c50ea22154982e5a8484d38eac746 /src/plugins/php/weechat-php.c | |
parent | fbbed9fbf7262ad497a012e40f9e6e3d39dd6030 (diff) | |
download | weechat-e5e3a9d2da382c7260b305e823a693734189a338.zip |
api: add function buffer_new_props (closes #1759)
Diffstat (limited to 'src/plugins/php/weechat-php.c')
-rw-r--r-- | src/plugins/php/weechat-php.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/plugins/php/weechat-php.c b/src/plugins/php/weechat-php.c index 89ebdd7e9..115d821ff 100644 --- a/src/plugins/php/weechat-php.c +++ b/src/plugins/php/weechat-php.c @@ -213,6 +213,7 @@ const zend_function_entry weechat_functions[] = { PHP_FE(weechat_unhook, arginfo_weechat_unhook) PHP_FE(weechat_unhook_all, arginfo_weechat_unhook_all) PHP_FE(weechat_buffer_new, arginfo_weechat_buffer_new) + PHP_FE(weechat_buffer_new_props, arginfo_weechat_buffer_new_props) PHP_FE(weechat_buffer_search, arginfo_weechat_buffer_search) PHP_FE(weechat_buffer_search_main, arginfo_weechat_buffer_search_main) PHP_FE(weechat_current_buffer, arginfo_weechat_current_buffer) |