CsignCsign
Member
Posted 11 months ago #
Hi,
I use now the newest WP 3.4 and AddQuicktag in newest version, too. Since updating my WP I get in the settings of AddQuicktag this error:
Warning: array_multisort() [function.array-multisort]: Array sizes are inconsistent in /home/www/web346/html/websites/wp-content/plugins/addquicktag/inc/class-settings.php on line 205
The Quicktags itself are working!
Just to let you know ...
http://wordpress.org/extend/plugins/addquicktag/
Clara
Member
Posted 11 months ago #
Warning: array_multisort(): Array sizes are inconsistent in /home/*******/public_html/wp-content/plugins/addquicktag/inc/class-settings.php on line 205
WordPress version 3.4
AddQuicktag version 2.0.4
plug-in is moving normally.....
Syamsul Alam
Member
Posted 10 months ago #
I also got this message when I try to add <center> and </center> in my 'start tag(s)' and 'end tag(s)'. But there's no such message when I try to add '[youtube ' and ']'.
When I delete my center tag from quicktags button, the warning message is gone.
WP ver: 3.3.1
AddQuickTag ver: 2.0.4
danyui
Member
Posted 10 months ago #
you have to add one line to class-settings.php.
look at line 203.there you will find this code.
$tmp[] = 0;
you need to make it like this.
else
$tmp[] = 0;
goodluck.
I will fox this in 2.0.5 -thanks for the hint.