Convert the page editor to the new TinyMCE.
Convert the page editor to the new TinyMCE.

File last commit:

c1e4c31f199d
9d6658343799
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;
}
?>