Disable "Swap Comics" pending further investigation.
Disable "Swap Comics" pending further investigation.

File last commit:

a5239f130d1d
81988dfe45dd
Show More
rss.php
15 lines | 253 B | text/x-php | PhpLexer
Add most necessary files for admin interface.
r1 <?php
function rsspost($body, $url)
{
Update rsspost() and tweak some stuff in html.php.
r26 global $dbConnection;
Update include/*.php to use mysqli_* functions.
r4
Update rsspost() and tweak some stuff in html.php.
r26 $sql = 'INSERT INTO rss_comment (body, url) VALUES (?, ?)';
$stmt = $dbConnection->prepare($sql);
$stmt->bindValue(1, $body);
$stmt->bindValue(2, $url);
Add most necessary files for admin interface.
r1
Update rsspost() and tweak some stuff in html.php.
r26 return $stmt->execute();
Add most necessary files for admin interface.
r1 }
?>