Revision 36
Added by stefan about 19 years ago
modify.php | ||
---|---|---|
1 | 1 |
<?php |
2 | 2 |
|
3 |
// $Id: modify.php,v 1.1.1.1 2005/01/30 10:32:23 rdjurovich Exp $
|
|
3 |
// $Id$ |
|
4 | 4 |
|
5 | 5 |
/* |
6 | 6 |
|
... | ... | |
32 | 32 |
$query = "SELECT url,height FROM ".TABLE_PREFIX."mod_wrapper WHERE section_id = '$section_id'"; |
33 | 33 |
$get_settings = $database->query($query); |
34 | 34 |
$settings = $get_settings->fetchRow(); |
35 |
$url = stripslashes($settings['url']); |
|
35 |
$url = $admin->stripslashes($settings['url']);
|
|
36 | 36 |
$height = $settings['height']; |
37 | 37 |
|
38 | 38 |
// Insert vars |
Also available in: Unified diff
Created new stripslashes method in class wb. Changed stripslashes() calls to method calls.