Forums
(@rotzoll)
17 years, 11 months ago
… change line 67:
$num = (int) array_pop( $widget[‘id’] );
… into:
$tempA = $widget[‘id’]; $tempB = explode( ‘-‘, $tempA ); $num = (int) array_pop( $tempB );
worked for me. — greetz, Christian