mirror of
https://github.com/vichan-devel/vichan.git
synced 2024-11-24 07:30:10 +01:00
Merge pull request #247 from antedeguemon/master
Bugfixes: edit post page minor fix and install.php bug
This commit is contained in:
commit
7477215eee
@ -1547,7 +1547,7 @@ function mod_edit_post($board, $edit_raw_html, $postID) {
|
|||||||
else
|
else
|
||||||
$query = prepare(sprintf('UPDATE ``posts_%s`` SET `name` = :name, `email` = :email, `subject` = :subject, `body_nomarkup` = :body WHERE `id` = :id', $board));
|
$query = prepare(sprintf('UPDATE ``posts_%s`` SET `name` = :name, `email` = :email, `subject` = :subject, `body_nomarkup` = :body WHERE `id` = :id', $board));
|
||||||
$query->bindValue(':id', $postID);
|
$query->bindValue(':id', $postID);
|
||||||
$query->bindValue('name', $_POST['name']);
|
$query->bindValue(':name', $_POST['name']);
|
||||||
$query->bindValue(':email', $_POST['email']);
|
$query->bindValue(':email', $_POST['email']);
|
||||||
$query->bindValue(':subject', $_POST['subject']);
|
$query->bindValue(':subject', $_POST['subject']);
|
||||||
$query->bindValue(':body', $_POST['body']);
|
$query->bindValue(':body', $_POST['body']);
|
||||||
|
@ -900,6 +900,10 @@ if ($step == 0) {
|
|||||||
$instance_config .= "\n";
|
$instance_config .= "\n";
|
||||||
|
|
||||||
if (@file_put_contents('inc/instance-config.php', $instance_config)) {
|
if (@file_put_contents('inc/instance-config.php', $instance_config)) {
|
||||||
|
// flushes opcache if php >= 5.5.0 or opcache is installed via PECL
|
||||||
|
if (function_exists('opcache_invalidate')) {
|
||||||
|
opcache_invalidate('inc/instance-config.php');
|
||||||
|
}
|
||||||
header('Location: ?step=4', true, $config['redirect_http']);
|
header('Location: ?step=4', true, $config['redirect_http']);
|
||||||
} else {
|
} else {
|
||||||
$page['title'] = 'Manual installation required';
|
$page['title'] = 'Manual installation required';
|
||||||
|
Loading…
Reference in New Issue
Block a user