diff options
author | redmatrix <git@macgirvin.com> | 2016-04-18 20:38:38 -0700 |
---|---|---|
committer | redmatrix <git@macgirvin.com> | 2016-04-18 20:38:38 -0700 |
commit | 2a4e8972e0edfa3156d9ce54d68ce0e54c0ec289 (patch) | |
tree | 2376d950ba2bdc7753336a3e2b94865c95c238f2 /mod/pretheme.php | |
parent | 2a61817bad96526994c0499f1fc0a843a9cc9405 (diff) | |
download | volse-hubzilla-2a4e8972e0edfa3156d9ce54d68ce0e54c0ec289.tar.gz volse-hubzilla-2a4e8972e0edfa3156d9ce54d68ce0e54c0ec289.tar.bz2 volse-hubzilla-2a4e8972e0edfa3156d9ce54d68ce0e54c0ec289.zip |
module updates
Diffstat (limited to 'mod/pretheme.php')
-rw-r--r-- | mod/pretheme.php | 22 |
1 files changed, 0 insertions, 22 deletions
diff --git a/mod/pretheme.php b/mod/pretheme.php deleted file mode 100644 index 1974f5f00..000000000 --- a/mod/pretheme.php +++ /dev/null @@ -1,22 +0,0 @@ -<?php - -function pretheme_init(&$a) { - - if($_REQUEST['theme']) { - $theme = $_REQUEST['theme']; - $info = get_theme_info($theme); - if($info) { - // unfortunately there will be no translation for this string - $desc = $info['description']; - $version = $info['version']; - $credits = $info['credits']; - } - else { - $desc = ''; - $version = ''; - $credits = ''; - } - echo json_encode(array('img' => get_theme_screenshot($theme), 'desc' => $desc, 'version' => $version, 'credits' => $credits)); - } - killme(); -} |