Allow selecting the "spoiler" style when editing pages.
Allow selecting the "spoiler" style when editing pages.

File last commit:

c1e4c31f199d
f114ccd74c90
Show More
rss.php
14 lines | 220 B | text/x-php | PhpLexer
Add most necessary files for admin interface.
r1 <?php
function rsspost($body, $url)
{
global $mtdb;
$mtdb->query('INSERT INTO rss_comment (body, url)
VALUES ("'.mysql_real_escape_string($body).'",
"'.mysql_real_escape_string($url).'")');
return true;
}
?>