Revision 442
Added by Matthias over 17 years ago
settings2.php | ||
---|---|---|
41 | 41 |
|
42 | 42 |
// Get values |
43 | 43 |
$page_title = $admin->add_slashes($admin->get_post_escaped('page_title')); |
44 |
$page_title = my_htmlspecialchars($page_title); |
|
44 | 45 |
$menu_title = $admin->add_slashes($admin->get_post_escaped('menu_title')); |
46 |
$menu_title = my_htmlspecialchars($menu_title); |
|
45 | 47 |
$description = $admin->add_slashes($admin->get_post('description')); |
46 | 48 |
$keywords = $admin->add_slashes($admin->get_post('keywords')); |
47 | 49 |
$parent = $admin->get_post('parent'); |
Also available in: Unified diff
Fixed issues with some languages when UTF8 is used.
Removed all htmlentites from the code (revoked changeset [396]) and added new functions instead.
Adapted the search and the highlighting to use the new functions.
With this changes WB can now be used with charset UTF8 for all languages.