show experimental and unsupported theme status on theme admin page

This commit is contained in:
friendica 2012-02-26 04:17:02 -08:00
parent fb8675f349
commit 5f7858a688
11 changed files with 14 additions and 3 deletions

View file

@ -711,7 +711,7 @@ function admin_page_themes(&$a){
return; // NOTREACHED
}
// display plugin details
// display theme details
require_once('library/markdown.php');
if (theme_status($themes,$theme)) {
@ -769,7 +769,9 @@ function admin_page_themes(&$a){
'$submit' => t('Submit'),
'$baseurl' => $a->get_baseurl(),
'$function' => 'themes',
'$plugins' => $xthemes
'$plugins' => $xthemes,
'$experimental' => t('[Experimental]'),
'$unsupported' => t('[Unsupported]')
));
}