Issue-#3873
Replace deprecated functions with new syntax.
This commit is contained in:
parent
9eb1f4b9c3
commit
0dfa57948f
124 changed files with 819 additions and 679 deletions
|
@ -1,10 +1,14 @@
|
|||
<?php
|
||||
|
||||
use Friendica\Core\Config;
|
||||
use Friendica\Core\PConfig;
|
||||
|
||||
$uid = get_theme_uid();
|
||||
|
||||
$style = get_pconfig($uid, 'vier', 'style');
|
||||
$style = PConfig::get($uid, 'vier', 'style');
|
||||
|
||||
if ($style == "")
|
||||
$style = get_config('vier', 'style');
|
||||
$style = Config::get('vier', 'style');
|
||||
|
||||
if ($style == "")
|
||||
$style = "plus";
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue