Issue-#3873

Replace deprecated functions with new syntax.
This commit is contained in:
Adam Magness 2017-11-06 21:22:52 -05:00
parent 9eb1f4b9c3
commit 0dfa57948f
124 changed files with 819 additions and 679 deletions

View file

@ -9,6 +9,7 @@
*/
use Friendica\App;
use Friendica\Core\Config;
require_once("include/socgraph.php");
require_once("include/Contact.php");
@ -23,7 +24,7 @@ function hovercard_content() {
$datatype = (x($_REQUEST,'datatype') ?$_REQUEST['datatype'] : "json");
// Get out if the system doesn't have public access allowed
if(intval(get_config('system','block_public')))
if(intval(Config::get('system','block_public')))
http_status_exit(401);
// Return the raw content of the template. We use this to make templates usable for js functions.