[BUG] Image reject repost board option now also affects YT embeds

This commit is contained in:
Fredrick Brennan 2015-08-23 09:04:37 +08:00 committed by czaks
parent 2fa37278db
commit b476b66007
2 changed files with 74 additions and 1 deletions

View file

@ -294,6 +294,32 @@ if (isset($_POST['delete'])) {
if (!isset($post['embed'])) {
error($config['error']['invalid_embed']);
}
if ($config['image_reject_repost']) {
if ($p = getPostByEmbed($post['embed'])) {
error(sprintf($config['error']['fileexists'],
($post['mod'] ? $config['root'] . $config['file_mod'] . '?/' : $config['root']) .
($board['dir'] . $config['dir']['res'] .
($p['thread'] ?
$p['thread'] . '.html#' . $p['id']
:
$p['id'] . '.html'
))
));
}
} else if (!$post['op'] && $config['image_reject_repost_in_thread']) {
if ($p = getPostByEmbedInThread($post['embed'], $post['thread'])) {
error(sprintf($config['error']['fileexistsinthread'],
($post['mod'] ? $config['root'] . $config['file_mod'] . '?/' : $config['root']) .
($board['dir'] . $config['dir']['res'] .
($p['thread'] ?
$p['thread'] . '.html#' . $p['id']
:
$p['id'] . '.html'
))
));
}
}
}
if (!hasPermission($config['mod']['bypass_field_disable'], $board['uri'])) {
@ -798,7 +824,7 @@ if (isset($_POST['delete'])) {
));
}
}
}
}
if (!hasPermission($config['mod']['postunoriginal'], $board['uri']) && $config['robot_enable'] && checkRobot($post['body_nomarkup'])) {
undoImage($post);