RafaelFunchal/edit-post-link

Bug in EditPostLink_Plugin.php

NitemareReal opened this issue · 0 comments

File: EditPostLink_Plugin.php
In line 26 you can find:
if (is_array($arr) && count($arr > 1)) {

There is a bug in "count" function, right code shoud be:

if (is_array($arr) && count($arr) > 1) {