Browse Source

lol

tags/vichan-devel-4.4.92
Michael Foster 10 years ago
parent
commit
8d14ef6bf7
2 changed files with 2 additions and 2 deletions
  1. +1
    -1
      inc/mod/pages.php
  2. +1
    -1
      post.php

+ 1
- 1
inc/mod/pages.php View File

@@ -1125,7 +1125,7 @@ function mod_move($originBoard, $postID) {
$pdo->quote($board['uri']) . ', ' . $newPostID . ', ' .
$pdo->quote($cite[0]) . ', ' . (int)$cite[1] . ')';
}
query('INSERT INTO ``cites`` VALUES ' . implode(', ', $insert_rows)) or error(db_error());;
query('INSERT INTO ``cites`` VALUES ' . implode(', ', $insert_rows)) or error(db_error());
}
}


+ 1
- 1
post.php View File

@@ -689,7 +689,7 @@ if (isset($_POST['delete'])) {
$pdo->quote($board['uri']) . ', ' . (int)$id . ', ' .
$pdo->quote($cite[0]) . ', ' . (int)$cite[1] . ')';
}
query('INSERT INTO ``cites`` VALUES ' . implode(', ', $insert_rows)) or error(db_error());;
query('INSERT INTO ``cites`` VALUES ' . implode(', ', $insert_rows)) or error(db_error());
}
if (!$post['op'] && strtolower($post['email']) != 'sage' && !$thread['sage'] && ($config['reply_limit'] == 0 || $numposts['replies']+1 < $config['reply_limit'])) {


Loading…
Cancel
Save