Bugs and workaround
-
Hey,
I just install that plugin and get some Notice messages.
To get around for people who want to avoid these messages, follow this :
In the file defaults.php,
in line 34 (message should appear only on install), replace :
if (!$my_options[$defaults[$i][0]]) {
by
if (!isset($my_options[$defaults[$i][0]])) {
and in line 53, replace :
$nPort = $asParts['port'];
by
$nPort = isset($asParts['port']) ? $asParts['port'] : '';
That should clean the view.
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
- The topic ‘Bugs and workaround’ is closed to new replies.