@twa wrote:
@asmecher, in the roundedCorners plugin there is an
eregi()
function used in l. 86 ofRoundedCornersPlugin.inc.php
:if (eregi("\/", $divPosition[$i2][0])) {
eregi()
was removed in PHP7.x, so I get a fatal php error on this. Couldn’t this be replaced byif (preg_match('/\//i', $divPosition[$i2][0]))
? (Although the
/i
option is not important, when searching for/
…)Thanks, Tobias
Posts: 1
Participants: 1