]> git.mxchange.org Git - friendica.git/commitdiff
Fix set_baseurl() notice messages in worker during tests
authorHypolite Petovan <mrpetovan@gmail.com>
Sat, 7 Jul 2018 01:39:24 +0000 (21:39 -0400)
committerHypolite Petovan <mrpetovan@gmail.com>
Mon, 16 Jul 2018 23:38:15 +0000 (19:38 -0400)
config/defaults.ini.php
tests/bootstrap.php

index f5974b925817e4891ee160db2dd4c3da58f1c423..36c06da4cde7dbf9adb0474b0b2a1e117f254cdd 100644 (file)
@@ -416,6 +416,11 @@ throttle_limit_week = 0
 ; Maximum number of posts that a user can send per month with the API. 0 to disable monthly throttling.
 throttle_limit_month = 0
 
+; url (String)
+; The fully-qualified URL of this Friendica node.
+; Used by the worker in a non-HTTP execution environment.
+url =
+
 ; worker_cooldown (Integer)
 ; Cooldown period in seconds after each worker function call.
 worker_cooldown = 0
index 875ec8ab7d5c5a4f2d1b808c972b1c48814eba0d..e566b58042f5c0b445e4aee60b079e4f9993ea5d 100644 (file)
@@ -13,6 +13,8 @@ require_once __DIR__.'/../include/api.php';
 
 new App(dirname(__DIR__));
 
+\Friendica\Core\Config::set('system', 'url', 'http://localhost/');
+
 // Backward compatibility
 if (!class_exists(TestCase::class)) {
        class_alias(PHPUnit_Framework_TestCase::class, TestCase::class);