X-Git-Url: https://git.mxchange.org/?p=friendica-addons.git;a=blobdiff_plain;f=startpage%2Fstartpage.php;h=c4324576609d90f07978c24366457a4645db13dc;hp=e0d822ac27594dfb83f85f70930ccc1552c57b39;hb=48dcbc6f3fc3edae74e3ea2c823011bfb7c26081;hpb=72474dc2f62f193e3f91c19ad41ce3f158023bbf diff --git a/startpage/startpage.php b/startpage/startpage.php index e0d822ac..c4324576 100644 --- a/startpage/startpage.php +++ b/startpage/startpage.php @@ -7,6 +7,7 @@ * */ +use Friendica\Core\PConfig; function startpage_install() { register_hook('home_init', 'addon/startpage/startpage.php', 'startpage_home_init'); @@ -27,7 +28,7 @@ function startpage_home_init($a, $b) { if(! local_user()) return; - $page = get_pconfig(local_user(),'startpage','startpage'); + $page = PConfig::get(local_user(),'startpage','startpage'); if(strlen($page)) { $slash = ((strpos($page,'/') === 0) ? true : false); if(stristr($page,'://')) @@ -50,7 +51,7 @@ function startpage_settings_post($a,$post) { if(! local_user()) return; if($_POST['startpage-submit']) - set_pconfig(local_user(),'startpage','startpage',strip_tags(trim($_POST['startpage']))); + PConfig::set(local_user(),'startpage','startpage',strip_tags(trim($_POST['startpage']))); } @@ -74,7 +75,7 @@ function startpage_settings(&$a,&$s) { /* Get the current state of our config variable */ - $page = get_pconfig(local_user(),'startpage','startpage'); + $page = PConfig::get(local_user(),'startpage','startpage'); /* Add some HTML to the existing form */