mirror of
https://github.com/vichan-devel/vichan.git
synced 2024-11-23 23:20:57 +01:00
Various fixes
This commit is contained in:
parent
1613f6baea
commit
0a3bca7dd8
2
.gitmodules
vendored
2
.gitmodules
vendored
@ -5,5 +5,5 @@
|
|||||||
|
|
||||||
[submodule "inc/lib/parsedown"]
|
[submodule "inc/lib/parsedown"]
|
||||||
path = inc/lib/parsedown
|
path = inc/lib/parsedown
|
||||||
url = https://github.com/vichan-devel/parsedown
|
url = https://github.com/vichan-devel/parsedown.git
|
||||||
branch = master
|
branch = master
|
||||||
|
@ -2752,7 +2752,7 @@ function mod_edit_page($id) {
|
|||||||
|
|
||||||
$fn = ($board['uri'] ? ($board['uri'] . '/') : '') . $page['name'] . '.html';
|
$fn = ($board['uri'] ? ($board['uri'] . '/') : '') . $page['name'] . '.html';
|
||||||
$body = "<div class='ban'>$write</div>";
|
$body = "<div class='ban'>$write</div>";
|
||||||
$html = Element('page.html', array('config' => $config, 'body' => $body, 'title' => utf8tohtml($page['title'])));
|
$html = Element('page.html', array('config' => $config, 'boardlist' => createBoardlist(), 'body' => $body, 'title' => utf8tohtml($page['title'])));
|
||||||
file_write($fn, $html);
|
file_write($fn, $html);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -149,7 +149,7 @@ $(document).ready(function(){
|
|||||||
}
|
}
|
||||||
|
|
||||||
//Append the watchlist toggle button.
|
//Append the watchlist toggle button.
|
||||||
$('.boardlist').append('<span>[ <a class="watchlist-toggle" href="#">'+_('watchlist')+'</a> ]</span>');
|
$('.boardlist').append(' <span>[ <a class="watchlist-toggle" href="#">'+_('watchlist')+'</a> ]</span>');
|
||||||
//Append a watch thread button after every OP post number.
|
//Append a watch thread button after every OP post number.
|
||||||
$('.op>.intro>.post_no:odd').after('<a class="watchThread" href="#">['+_('Watch Thread')+']</a>');
|
$('.op>.intro>.post_no:odd').after('<a class="watchThread" href="#">['+_('Watch Thread')+']</a>');
|
||||||
|
|
||||||
|
@ -170,5 +170,6 @@
|
|||||||
echo Element('page.html', Array(
|
echo Element('page.html', Array(
|
||||||
'config'=>$config,
|
'config'=>$config,
|
||||||
'title'=>_('Search'),
|
'title'=>_('Search'),
|
||||||
|
'boardlist'=>createBoardlist(),
|
||||||
'body'=>'' . $body
|
'body'=>'' . $body
|
||||||
));
|
));
|
||||||
|
Loading…
Reference in New Issue
Block a user