linkeddata / ldphp

Linked Data server for PHP
MIT License
38 stars 12 forks source link

import_request_variables is not supported after PHP 5.4.0 #2

Closed white-gecko closed 12 years ago

white-gecko commented 12 years ago

Since PHP 5.4.0 the function import_request_variables[1] is no longer supported. I have replaced it by using extract [2] instead.

[1] http://php.net/manual/en/function.import-request-variables.php [2] http://www.php.net/manual/de/function.extract.php

presbrey commented 12 years ago

Fixed in 18832c2. Thanks white-gecko!