Revision 36
Added by stefan about 19 years ago
functions.php | ||
---|---|---|
630 | 630 |
$parent = $results_array['parent']; |
631 | 631 |
$level = $results_array['level']; |
632 | 632 |
$link = $results_array['link']; |
633 |
$page_title = stripslashes($results_array['page_title']); |
|
634 |
$menu_title = stripslashes($results_array['menu_title']); |
|
633 |
$page_title = $admin->stripslashes($results_array['page_title']);
|
|
634 |
$menu_title = $admin->stripslashes($results_array['menu_title']);
|
|
635 | 635 |
|
636 | 636 |
// Get the sections that belong to the page |
637 | 637 |
$query_sections = $database->query("SELECT section_id,module FROM ".TABLE_PREFIX."sections WHERE page_id = '$page_id'"); |
Also available in: Unified diff
Created new stripslashes method in class wb. Changed stripslashes() calls to method calls.