diff options
author | Thomas Lange <code@nerdmind.de> | 2021-06-19 18:56:33 +0200 |
---|---|---|
committer | Thomas Lange <code@nerdmind.de> | 2021-06-19 18:56:33 +0200 |
commit | b95237938c64eb7355a38e3a513633e6811d2968 (patch) | |
tree | 293f4eb24ef391d7f6c3ad2cf736998b43482de7 | |
parent | be49d1f366da155737d05a17f73cf1c3d246c67e (diff) | |
download | blog-b95237938c64eb7355a38e3a513633e6811d2968.tar.gz blog-b95237938c64eb7355a38e3a513633e6811d2968.tar.xz blog-b95237938c64eb7355a38e3a513633e6811d2968.zip |
Remove unused variable
-rw-r--r-- | core/include/search/main.php | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/core/include/search/main.php b/core/include/search/main.php index f1b0693..95cffda 100644 --- a/core/include/search/main.php +++ b/core/include/search/main.php @@ -5,7 +5,6 @@ $Database = Application::getDatabase(); $Language = Application::getLanguage(); -$SEARCH_SUCCESS = FALSE; $D_LIST = $Database->query(sprintf('SELECT DISTINCT DAY(time_insert) AS temp FROM %s ORDER BY temp', Post\Attribute::TABLE)); $M_LIST = $Database->query(sprintf('SELECT DISTINCT MONTH(time_insert) AS temp FROM %s ORDER BY temp', Post\Attribute::TABLE)); $Y_LIST = $Database->query(sprintf('SELECT DISTINCT YEAR(time_insert) AS temp FROM %s ORDER BY temp', Post\Attribute::TABLE)); |