Revision 36
Added by stefan about 19 years ago
modify.php | ||
---|---|---|
1 | 1 |
<?php |
2 | 2 |
|
3 |
// $Id: modify.php,v 1.2 2005/04/02 06:25:37 rdjurovich Exp $
|
|
3 |
// $Id$ |
|
4 | 4 |
|
5 | 5 |
/* |
6 | 6 |
|
... | ... | |
81 | 81 |
$template->set_block('page', 'main_block', 'main'); |
82 | 82 |
$template->set_var(array( |
83 | 83 |
'PAGE_ID' => $results_array['page_id'], |
84 |
'PAGE_TITLE' => stripslashes($results_array['page_title']), |
|
84 |
'PAGE_TITLE' => $admin->stripslashes($results_array['page_title']),
|
|
85 | 85 |
'MODIFIED_BY' => $user['display_name'], |
86 | 86 |
'MODIFIED_BY_USERNAME' => $user['username'], |
87 | 87 |
'MODIFIED_WHEN' => $modified_ts, |
Also available in: Unified diff
Created new stripslashes method in class wb. Changed stripslashes() calls to method calls.