1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2025-12-13 03:35:55 +00:00

dirname(__FILE__) -> __DIR__

This commit is contained in:
Andrew Dolgov
2021-02-22 17:38:46 +03:00
parent add6242e51
commit 42173386b3
13 changed files with 19 additions and 19 deletions

View File

@@ -1,11 +1,11 @@
#!/usr/bin/env php
<?php
set_include_path(dirname(__FILE__) ."/include" . PATH_SEPARATOR .
set_include_path(__DIR__ ."/include" . PATH_SEPARATOR .
get_include_path());
define('DISABLE_SESSIONS', true);
chdir(dirname(__FILE__));
chdir(__DIR__);
require_once "autoload.php";
require_once "functions.php";