WhRedactor plugins path error
Closed this issue · 3 comments
Folklor commented
In file WhRedactor.php in line 119 we have:
if (@file_exists($pluginsPath . $pluginName . $ds . $pluginName . '.' . $type)) { ...
In this case plugins not included, function file_exists return false...
But must be:
if (@file_exists($pluginsPath . $ds . $pluginName . $ds . $pluginName . '.' . $type)) { ...
tonydspaniard commented
Thanks @Folklor have time for a PR?
Folklor commented
What do you mean by the word "PR"?
Unfortunately, very little free time.
tonydspaniard commented
Fixed by #103