Hello.
On creation of a new hook, two errors are generated. (wp 4.4.1, php 5.4.45)
This is the first:
Deprecated: Function split() is deprecated in /home/devredpupmedia/public_html/client/brand/wp-content/plugins/hookpress/services.php on line 60
I was able to resolve it by editing line 60 in /services.php as follows:
'fields'=>explode(',',$_POST['fields']),
Also edited line 49 in the same file with the same edit.
The second:
Strict Standards: Only variables should be passed by reference in /home/devredpupmedia/public_html/client/brand/wp-content/plugins/hookpress/hookpress.php on line 68
edit_post
I was able to resolve it by editing line 68 in /hookpress.php as follows:
$tmp = array_keys($webhooks);
return end($tmp);
I'm not polished in PHP so I'm asking if these changes are acceptable for use in the plugin.
Thanks
Hello.
On creation of a new hook, two errors are generated. (wp 4.4.1, php 5.4.45)
This is the first:
Deprecated: Function split() is deprecated in /home/devredpupmedia/public_html/client/brand/wp-content/plugins/hookpress/services.php on line 60
I was able to resolve it by editing line 60 in /services.php as follows:
Also edited line 49 in the same file with the same edit.
The second:
Strict Standards: Only variables should be passed by reference in /home/devredpupmedia/public_html/client/brand/wp-content/plugins/hookpress/hookpress.php on line 68
edit_post
I was able to resolve it by editing line 68 in /hookpress.php as follows:
I'm not polished in PHP so I'm asking if these changes are acceptable for use in the plugin.
Thanks