X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=mod%2Fcal.php;h=7398426bc3dc5256370f1e2dbff7f7b5c3a2ecb1;hb=05dcedb54c8c8f2b48e47fa11cb6dd4586bdd9bb;hp=e70128d338259d08f5af0e131f40cbc6bc82a1ee;hpb=df28f99caa7770235ce0e4f3901c7e9a77f70478;p=friendica.git diff --git a/mod/cal.php b/mod/cal.php index e70128d338..7398426bc3 100644 --- a/mod/cal.php +++ b/mod/cal.php @@ -67,10 +67,6 @@ function cal_init(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 +80,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 +269,8 @@ function cal_content(App $a) { '$tabs' => $tabs, '$title' => t('Events'), '$view' => t('View'), - '$previous' => 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,