X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=mod%2Fcal.php;h=cd884e50e4b000b02f62512048cd73e7afa43909;hb=83e4141639d026dfa93c4c2c0f9fe00a7cf56446;hp=7cb36e7a54fc9eaf6bd1a172fb9d17755ef4ed68;hpb=42c2e09382d3b2846a0cb709d88cda97e717424f;p=friendica.git diff --git a/mod/cal.php b/mod/cal.php index 7cb36e7a54..cd884e50e4 100644 --- a/mod/cal.php +++ b/mod/cal.php @@ -6,10 +6,12 @@ * of the profile owner */ +use Friendica\App; + require_once('include/event.php'); require_once('include/redir.php'); -function cal_init(App &$a) { +function cal_init(App $a) { if($a->argc > 1) auto_redir($a, $a->argv[1]); @@ -64,13 +66,9 @@ function cal_init(App &$a) { return; } -function cal_content(App &$a) { +function cal_content(App $a) { nav_set_selected('events'); - $editselect = 'none'; - if( feature_enabled(local_user(), 'richtext') ) - $editselect = 'textareas'; - // First day of the week (0 = Sunday) $firstDay = get_pconfig(local_user(),'system','first_day_of_week'); if ($firstDay === false) $firstDay=0; @@ -84,13 +82,11 @@ function cal_content(App &$a) { '$module_url' => '/cal/' . $a->data['user']['nickname'], '$modparams' => 2, '$i18n' => $i18n, - '$editselect' => $editselect )); $etpl = get_markup_template('event_end.tpl'); $a->page['end'] .= replace_macros($etpl,array( '$baseurl' => App::get_baseurl(), - '$editselect' => $editselect )); $o =""; @@ -275,8 +271,8 @@ function cal_content(App &$a) { '$tabs' => $tabs, '$title' => t('Events'), '$view' => t('View'), - '$previus' => array(App::get_baseurl()."/events/$prevyear/$prevmonth",t('Previous'),'',''), - '$next' => array(App::get_baseurl()."/events/$nextyear/$nextmonth",t('Next'),'',''), + '$previous' => array(App::get_baseurl()."/events/$prevyear/$prevmonth", t('Previous'),'',''), + '$next' => array(App::get_baseurl()."/events/$nextyear/$nextmonth", t('Next'),'',''), '$calendar' => cal($y,$m,$links, ' eventcal'), '$events' => $events,