if (!empty($_GET["graph_start"]) && $_GET["graph_start"] < 1600000000) {
改成
if (!empty($_GET["graph_start"]) && $_GET["graph_start"] < FILTER_VALIDATE_MAX_DATE_AS_INT) {
if (!empty($_GET["graph_end"]) && $_GET["graph_end"] < 1600000000) {
改成
if (!empty($_GET["graph_end"]) && $_GET["graph_end"] < FILTER_VALIDATE_MAX_DATE_AS_INT) {
2.在 include/global_constants.php 最後面加上
define('FILTER_VALIDATE_MAX_DATE_AS_INT', 2088385563);
3.修改 graph_xport.php
if (!empty($_GET["graph_start"]) && is_numeric($_GET["graph_start"]) && $_GET["graph_start"] < 1600000000) {
改成
if (!empty($_GET["graph_start"]) && is_numeric($_GET["graph_start"]) && $_GET["graph_start"] < FILTER_VALIDATE_MAX_DATE_AS_INT
if (!empty($_GET["graph_end"]) && is_numeric($_GET["graph_end"]) && $_GET["graph_end"] < 1600000000) {
改成
if (!empty($_GET["graph_end"]) && is_numeric($_GET["graph_end"]) && $_GET["graph_end"] < FILTER_VALIDATE_MAX_DATE_AS_INT
這邊只有修正時間區塊被鎖死在1天以上的問題、但是至少不會被鎖死只能看一天以上的時間區間了
0 意見:
張貼留言