REQUEST_URI Hatası

Warning: Use of undefined constant REQUEST_URI – assumed ‘REQUEST_URI’

wp-contentthemesŞABLONADIfunctions.php on line 73

satırını

$path = $_SERVER['HTTP_HOST'] . $_SERVER[REQUEST_URI];

aşağıdaki gibi değiştir.

$path = $_SERVER['HTTP_HOST'] . $_SERVER['REQUEST_URI'];

Bir cevap yazın: