| 6 |
require_once "../bbs/user_section_favor.inc.php"; |
require_once "../bbs/user_section_favor.inc.php"; |
| 7 |
require_once "./load_doc_list.inc.php"; |
require_once "./load_doc_list.inc.php"; |
| 8 |
|
|
| 9 |
|
$no_cache = (isset($_GET["cache"]) && $_GET["cache"] == "0"); |
| 10 |
|
|
| 11 |
$s_favor = new section_favorite($_SESSION["BBS_uid"], $db_conn); |
$s_favor = new section_favorite($_SESSION["BBS_uid"], $db_conn); |
| 12 |
|
|
| 13 |
// Load section list |
// Load section list |
| 70 |
|
|
| 71 |
$cache_path = "../bbs/cache/www_doc_list_" . $_SESSION["BBS_uid"]; |
$cache_path = "../bbs/cache/www_doc_list_" . $_SESSION["BBS_uid"]; |
| 72 |
$buffer = false; |
$buffer = false; |
| 73 |
if (file_exists($cache_path)) |
if (!$no_cache && file_exists($cache_path)) |
| 74 |
{ |
{ |
| 75 |
if (filemtime($cache_path) >= time() - 3600) // refresh interval = 1 hour |
if (filemtime($cache_path) >= time() - 3600) // refresh interval = 1 hour |
| 76 |
{ |
{ |