Plugin Author
Gabor
(@nextendweb_gabor)
Hi! I have only seen this problem once, when the server configuration was wrong, and then the solution was to disable magic_quotes_gpc in the hosting server, because without that, the post variables will be messed up, and our menu can’t save down the settings properly.
You can check, if it’s turned on, if you create a php file with only this inside it:
<?php var_dump(get_magic_quotes_gpc()); ?>
Upload it to your website, and check it through your browser.
You can modify our code, to make this error message disappear, but I think you might will have problems with the fonts:
wp-content/plugins/nextend/library/parse/font.php
This code:
function mixinTab($target, $source = ''){
if($source == '') $source = $this->_font['firsttab'];
$this->_font[$target] = array_merge($this->_font[$source], $this->_font[$target]);
}
Could be changed to this:
function mixinTab($target, $source = ''){
if($source == '') $source = $this->_font['firsttab'];
if(is_array($this->_font[$source])&&is_array($this->_font[$target])) $this->_font[$target] = array_merge($this->_font[$source], $this->_font[$target]);
}
Thanks for getting back to me, I should point out that this was working fine and has only just started having the problem but no idea why as nothing had changed.
I’ve inserted the new code and everything looks good now, thanks 🙂