diff options
author | friendica <info@friendica.com> | 2012-02-26 04:17:02 -0800 |
---|---|---|
committer | friendica <info@friendica.com> | 2012-02-26 04:17:02 -0800 |
commit | 5f7858a688a1b6877246933a6c4c72318c885109 (patch) | |
tree | 09cb308d1c556f2537d018d9a616e64fad808c8d /mod/admin.php | |
parent | fb8675f3494b0f5e0b98d422f0cb3f6e8f410c4a (diff) | |
download | volse-hubzilla-5f7858a688a1b6877246933a6c4c72318c885109.tar.gz volse-hubzilla-5f7858a688a1b6877246933a6c4c72318c885109.tar.bz2 volse-hubzilla-5f7858a688a1b6877246933a6c4c72318c885109.zip |
show experimental and unsupported theme status on theme admin page
Diffstat (limited to 'mod/admin.php')
-rwxr-xr-x | mod/admin.php | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/mod/admin.php b/mod/admin.php index bcbf3e28f..0f600e312 100755 --- a/mod/admin.php +++ b/mod/admin.php @@ -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]') )); } |