mirror of
https://github.com/vichan-devel/vichan.git
synced 2024-11-14 10:57:38 +01:00
New event: rebuildpost, allows you to bind events to ?/edit
This commit is contained in:
parent
b476b66007
commit
7831da83fc
@ -1166,19 +1166,22 @@ function deleteFile($id, $remove_entirely_if_already=true, $file=null) {
|
|||||||
|
|
||||||
// rebuild post (markup)
|
// rebuild post (markup)
|
||||||
function rebuildPost($id) {
|
function rebuildPost($id) {
|
||||||
global $board;
|
global $board, $mod;
|
||||||
|
|
||||||
$query = prepare(sprintf("SELECT `body_nomarkup`, `thread` FROM ``posts_%s`` WHERE `id` = :id", $board['uri']));
|
$query = prepare(sprintf("SELECT * FROM ``posts_%s`` WHERE `id` = :id", $board['uri']));
|
||||||
$query->bindValue(':id', $id, PDO::PARAM_INT);
|
$query->bindValue(':id', $id, PDO::PARAM_INT);
|
||||||
$query->execute() or error(db_error($query));
|
$query->execute() or error(db_error($query));
|
||||||
|
|
||||||
if ((!$post = $query->fetch(PDO::FETCH_ASSOC)) || !$post['body_nomarkup'])
|
if ((!$post = $query->fetch(PDO::FETCH_ASSOC)) || !$post['body_nomarkup'])
|
||||||
return false;
|
return false;
|
||||||
|
|
||||||
markup($body = &$post['body_nomarkup']);
|
markup($post['body'] = &$post['body_nomarkup']);
|
||||||
|
$post = (object)$post;
|
||||||
|
event('rebuildpost', $post);
|
||||||
|
$post = (array)$post;
|
||||||
|
|
||||||
$query = prepare(sprintf("UPDATE ``posts_%s`` SET `body` = :body WHERE `id` = :id", $board['uri']));
|
$query = prepare(sprintf("UPDATE ``posts_%s`` SET `body` = :body WHERE `id` = :id", $board['uri']));
|
||||||
$query->bindValue(':body', $body);
|
$query->bindValue(':body', $post['body']);
|
||||||
$query->bindValue(':id', $id, PDO::PARAM_INT);
|
$query->bindValue(':id', $id, PDO::PARAM_INT);
|
||||||
$query->execute() or error(db_error($query));
|
$query->execute() or error(db_error($query));
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user