From 95bd206e9d856f74d9f56e364daf69a2066d58fe Mon Sep 17 00:00:00 2001 From: logmanoriginal Date: Tue, 6 Nov 2018 18:53:35 +0100 Subject: [PATCH] core: Move REPOSITORY from index.php to RssBridge.php --- index.php | 1 - lib/RssBridge.php | 1 + 2 files changed, 1 insertion(+), 1 deletion(-) diff --git a/index.php b/index.php index bc621906..b44eb365 100644 --- a/index.php +++ b/index.php @@ -49,7 +49,6 @@ if (isset($argv)) { $params = $_GET; } -define('REPOSITORY', 'https://github.com/RSS-Bridge/rss-bridge/'); define('USER_AGENT', 'Mozilla/5.0 (X11; Linux x86_64; rv:30.0) Gecko/20121202 Firefox/30.0(rss-bridge/' . Configuration::$VERSION diff --git a/lib/RssBridge.php b/lib/RssBridge.php index 2c9b9799..98950c71 100644 --- a/lib/RssBridge.php +++ b/lib/RssBridge.php @@ -6,6 +6,7 @@ define('PATH_LIB_BRIDGES', __DIR__ . '/../bridges/'); // Path to bridges library define('PATH_LIB_FORMATS', __DIR__ . '/../formats/'); // Path to formats library define('PATH_LIB_CACHES', __DIR__ . '/../caches/'); // Path to caches library define('PATH_CACHE', __DIR__ . '/../cache'); // Path to cache folder +define('REPOSITORY', 'https://github.com/RSS-Bridge/rss-bridge/'); // Classes require_once PATH_LIB . 'Exceptions.php';