mirror of
https://git.tt-rss.org/git/tt-rss.git
synced 2025-12-13 05:25:56 +00:00
dirname(__FILE__) -> __DIR__
This commit is contained in:
@@ -48,7 +48,7 @@ function ttrss_error_handler($errno, $errstr, $file, $line) {
|
||||
|
||||
if (error_reporting() == 0 || !$errno) return false;
|
||||
|
||||
$file = substr(str_replace(dirname(dirname(__FILE__)), "", $file), 1);
|
||||
$file = substr(str_replace(dirname(__DIR__), "", $file), 1);
|
||||
|
||||
$context = format_backtrace(debug_backtrace());
|
||||
$errstr = truncate_middle($errstr, 16384, " (...) ");
|
||||
@@ -72,7 +72,7 @@ function ttrss_fatal_handler() {
|
||||
|
||||
$context = format_backtrace(debug_backtrace());
|
||||
|
||||
$file = substr(str_replace(dirname(dirname(__FILE__)), "", $file), 1);
|
||||
$file = substr(str_replace(dirname(__DIR__), "", $file), 1);
|
||||
|
||||
if ($last_query) $errstr .= " [Last query: $last_query]";
|
||||
|
||||
|
||||
@@ -620,7 +620,7 @@
|
||||
$ttrss_version['version'] = "UNKNOWN (Unsupported)";
|
||||
|
||||
date_default_timezone_set('UTC');
|
||||
$root_dir = dirname(dirname(__FILE__));
|
||||
$root_dir = dirname(__DIR__);
|
||||
|
||||
if (PHP_OS === "Darwin") {
|
||||
$ttrss_version['version'] = "UNKNOWN (Unsupported, Darwin)";
|
||||
|
||||
Reference in New Issue
Block a user