From ffefe1d1622cbda01b982648710c68acd4e1b4c2 Mon Sep 17 00:00:00 2001 From: Christian Schneider Date: Mon, 11 May 2020 17:27:39 +0200 Subject: Mark static methods properly to avoid deprecation message --- it_url.class | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'it_url.class') diff --git a/it_url.class b/it_url.class index 3102913..d5492e8 100644 --- a/it_url.class +++ b/it_url.class @@ -752,7 +752,7 @@ static function absolute($url = null, $proto_force = null) * @param $type Type of redirect, "temporary" or "permanent", default temporary * @return This method never returns. */ -function redirect($url = null, $type = "temporary") +static function redirect($url = null, $type = "temporary") { $codes = array('permanent' => 301, 'temporary' => 303); # NOTE: HTTP 303 is called "See Other", rather than Temporary (which would be HTTP 307), but is the behaviour one usually wants for temporary redirects if (!($code = $codes[$type]) || !$url) -- cgit v1.2.3