Revision 106
Added by stefan about 19 years ago
comment_page.php | ||
---|---|---|
35 | 35 |
// Print comments page |
36 | 36 |
$vars = array('[POST_TITLE]', '[ACTION_URL]'); |
37 | 37 |
$values = array(POST_TITLE, WB_URL.'/modules/news/submit_comment.php?page_id='.PAGE_ID.'§ion_id='.SECTION_ID.'&post_id='.POST_ID); |
38 |
echo str_replace($vars, $values, $this->strip_slashes_dummy($settings['comments_page']));
|
|
38 |
echo str_replace($vars, $values, ($settings['comments_page'])); |
|
39 | 39 |
} |
40 | 40 |
|
41 | 41 |
?> |
Also available in: Unified diff
Renamed compatibility.php to frontend.functions.php.
Moved frontend functions from class frontend to frontend.functions.php.
Removed instances of strip_slashes_dummy. Replaced $this by $wb in a couple of places.
Created file initialize.php, where all initializations now take place (moved from class wb constructor).