Fix indentation

This commit is contained in:
Robert Miles 2019-10-08 11:35:00 -04:00
parent 1b50c7290c
commit 1e4ebeddd4
1 changed files with 1 additions and 1 deletions

View File

@ -3,7 +3,7 @@
// If they share a pinned/unpinned status, later post comes to the top.
// Otherwise, force pinned post to the top.
function pinned_sort($thread_a,$thread_b) {
if ($thread_a["pinned"]==$thread_b["pinned"]) {
if ($thread_a["pinned"] == $thread_b["pinned"]) {
return (($thread_a["created"]>$thread_b["created"])? -1 : 1);
}
if ($thread_a["pinned"]) {