Undefined index in wdt_functions.php on line 351
-
Hi there
This line is causing a PHP notice on the front end
$data['title'] = stripslashes($data['title']);
I’ve modified it to this:
if( isset($data['title'] ) ) { $data['title'] = stripslashes($data['title']); } else { $data['title'] = ''; }
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
- The topic ‘Undefined index in wdt_functions.php on line 351’ is closed to new replies.