Remove useless theme session variable deletions in modules
This commit is contained in:
parent
ead0defb48
commit
f4d06ebd47
7 changed files with 0 additions and 41 deletions
|
@ -17,14 +17,6 @@ use Friendica\Database\DBA;
|
|||
use Friendica\Model\Item;
|
||||
use Friendica\Model\User;
|
||||
|
||||
function community_init(App $a)
|
||||
{
|
||||
if (!local_user()) {
|
||||
unset($_SESSION['theme']);
|
||||
unset($_SESSION['mobile-theme']);
|
||||
}
|
||||
}
|
||||
|
||||
function community_content(App $a, $update = 0)
|
||||
{
|
||||
$o = '';
|
||||
|
|
|
@ -76,10 +76,6 @@ function search_init(App $a) {
|
|||
}
|
||||
|
||||
$a->page['aside'] .= search_saved_searches();
|
||||
|
||||
} else {
|
||||
unset($_SESSION['theme']);
|
||||
unset($_SESSION['mobile-theme']);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -41,14 +41,6 @@ function uimport_content(App $a)
|
|||
}
|
||||
}
|
||||
|
||||
|
||||
if (!empty($_SESSION['theme'])) {
|
||||
unset($_SESSION['theme']);
|
||||
}
|
||||
if (!empty($_SESSION['mobile-theme'])) {
|
||||
unset($_SESSION['mobile-theme']);
|
||||
}
|
||||
|
||||
$tpl = Renderer::getMarkupTemplate("uimport.tpl");
|
||||
return Renderer::replaceMacros($tpl, [
|
||||
'$regbutt' => L10n::t('Import'),
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue