Revision 396
Added by Matthias almost 18 years ago
settings2.php | ||
---|---|---|
40 | 40 |
require_once(WB_PATH.'/framework/functions.php'); |
41 | 41 |
|
42 | 42 |
// Get values |
43 |
$page_title = $admin->add_slashes($admin->get_post('page_title')); |
|
44 |
$menu_title = $admin->add_slashes($admin->get_post('menu_title')); |
|
43 |
$page_title = $admin->add_slashes($admin->get_post_escaped('page_title'));
|
|
44 |
$menu_title = $admin->add_slashes($admin->get_post_escaped('menu_title'));
|
|
45 | 45 |
$description = $admin->add_slashes($admin->get_post('description')); |
46 | 46 |
$keywords = $admin->add_slashes($admin->get_post('keywords')); |
47 | 47 |
$parent = $admin->get_post('parent'); |
Also available in: Unified diff
Fixed problem with Page Title has to be escaped (#287)