X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=mod%2Feditpost.php;h=f3746317a14ba25e7cf70b9fd2aa8b2c0f925480;hb=1c6535c0b45c32ccbb0e2bd49e5bb7a6d5435d27;hp=a655801d7727ec11b60837fd3e2fbb4fcc76bc13;hpb=c0df692f5fc4eaadb322614069b2c7ed40453fa1;p=friendica.git diff --git a/mod/editpost.php b/mod/editpost.php index a655801d77..f3746317a1 100644 --- a/mod/editpost.php +++ b/mod/editpost.php @@ -2,7 +2,7 @@ require_once('include/acl_selectors.php'); -function editpost_content(App &$a) { +function editpost_content(App $a) { $o = ''; @@ -28,14 +28,6 @@ function editpost_content(App &$a) { return; } -/* $plaintext = false; - if( local_user() && intval(get_pconfig(local_user(),'system','plaintext')) || !feature_enabled(local_user(),'richtext') ) - $plaintext = true;*/ - $plaintext = true; - if( local_user() && feature_enabled(local_user(),'richtext') ) - $plaintext = false; - - $o .= replace_macros(get_markup_template("section_title.tpl"),array( '$title' => t('Edit post') )); @@ -43,7 +35,6 @@ function editpost_content(App &$a) { $tpl = get_markup_template('jot-header.tpl'); $a->page['htmlhead'] .= replace_macros($tpl, array( '$baseurl' => App::get_baseurl(), - '$editselect' => (($plaintext) ? 'none' : '/(profile-jot-text|prvmail-text)/'), '$ispublic' => ' ', // t('Visible to everybody'), '$geotag' => $geotag, '$nickname' => $a->user['nickname'] @@ -52,7 +43,6 @@ function editpost_content(App &$a) { $tpl = get_markup_template('jot-end.tpl'); $a->page['end'] .= replace_macros($tpl, array( '$baseurl' => App::get_baseurl(), - '$editselect' => (($plaintext) ? 'none' : '/(profile-jot-text|prvmail-text)/'), '$ispublic' => ' ', // t('Visible to everybody'), '$geotag' => $geotag, '$nickname' => $a->user['nickname']