Merge pull request #13 from mt-admin tinymce...
Merge pull request #13 from mt-admin tinymce Upgrade TinyMCE to version 4.5.7.

File last commit:

2f20c7105050
ec0731305c18 merge
Show More
rss.php
14 lines | 247 B | text/x-php | PhpLexer
Add most necessary files for admin interface.
r1 <?php
function rsspost($body, $url)
{
global $mtdb;
Update include/*.php to use mysqli_* functions.
r4
Add most necessary files for admin interface.
r1 $mtdb->query('INSERT INTO rss_comment (body, url)
Update include/*.php to use mysqli_* functions.
r4 VALUES ("'.mysqli_real_escape_string($mtdb->link, $body).'",
"'.mysqli_real_escape_string($mtdb->link, $url).'")');
Add most necessary files for admin interface.
r1
return true;
}
?>