]> Joshua Wise's Git repositories - patchfork.git/commitdiff
Make config page refuse to allow you to select the mini theme (it should only be...
authorJoshua Wise <joshua@h2so4.joshuawise.com>
Tue, 23 Mar 2010 02:24:26 +0000 (22:24 -0400)
committerJoshua Wise <joshua@h2so4.joshuawise.com>
Tue, 23 Mar 2010 02:24:26 +0000 (22:24 -0400)
player/config.php

index 7146eedceee7621647de3c334ec63a57573a16e7..748156cf8e6166ded6671246fd209e6be22ae08d 100644 (file)
 $themes = get_available_themes();
 $ctheme = get_config("theme", "default");
 foreach($themes as $theme) {
+       if ($theme == "mini")
+               continue;
        echo "\n<option value='$theme' ";
        if($theme==$ctheme)
                echo "selected='selected' ";
This page took 0.024466 seconds and 4 git commands to generate.