X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=mod%2Fcal.php;h=db5b00879e679f78b2f821c3c85f4bd2ad7bd1c5;hb=0dfa57948f152a90a4d8093419a2ea5ced07349c;hp=a130e7a30f81de33c380c8a347d9d741da6f6865;hpb=541d6ab8959fe3c069996e230def126c154da34d;p=friendica.git diff --git a/mod/cal.php b/mod/cal.php index a130e7a30f..db5b00879e 100644 --- a/mod/cal.php +++ b/mod/cal.php @@ -7,6 +7,8 @@ */ use Friendica\App; +use Friendica\Core\Config; +use Friendica\Core\PConfig; use Friendica\Core\System; require_once('include/event.php'); @@ -16,7 +18,7 @@ function cal_init(App $a) { if($a->argc > 1) auto_redir($a, $a->argv[1]); - if((get_config('system','block_public')) && (! local_user()) && (! remote_user())) { + if((Config::get('system','block_public')) && (! local_user()) && (! remote_user())) { return; } @@ -71,7 +73,7 @@ function cal_content(App $a) { nav_set_selected('events'); // First day of the week (0 = Sunday) - $firstDay = get_pconfig(local_user(),'system','first_day_of_week'); + $firstDay = PConfig::get(local_user(),'system','first_day_of_week'); if ($firstDay === false) $firstDay=0; // get the translation strings for the callendar @@ -250,7 +252,7 @@ function cal_content(App $a) { if (x($_GET,'id')){ $tpl = get_markup_template("event.tpl"); } else { -// if (get_config('experimentals','new_calendar')==1){ +// if (Config::get('experimentals','new_calendar')==1){ $tpl = get_markup_template("events_js.tpl"); // } else { // $tpl = get_markup_template("events.tpl");