lincanbin / Carbon-Forum

A high performance open-source forum software written in PHP. Discussions Tags based with Quora/StackOverflow style.
https://www.94cb.com/
Apache License 2.0
1.84k stars 433 forks source link

how to pin post on top? 如何把帖子置顶? #289

Open hoogw opened 5 years ago

hoogw commented 5 years ago

I know when edit post, you can click 'Rise' button to pin it on top for 7 days. If you click again, add 7 more days, and so on.

But I want to permanent pin post on top, no need to click click again again for 7 days.

hoogw commented 5 years ago

Solution is make 7 days to 7000 days, by modify code

C:\Apache24\htdocs\carbon\controller\manage.php

              // edit post, click sink, sink 7 days = 604800 second, 

            // I want 7000 days = 604800000

    $this->db->query("UPDATE " . PREFIX . "topics SET LastTime = LastTime-604800000 WHERE ID=:ID", array(

        "ID" => $this->id

           // edit post, click rise, will pin top for 7 days = 604800 second, 

            // I want 7000 days = 604800000

    $this->db->query("UPDATE " . PREFIX . "topics SET LastTime = LastTime+604800000 WHERE ID=:ID", array(

        "ID" => $this->id

    ));