summaryrefslogtreecommitdiff
path: root/core/controllers/admin_graphics.php
diff options
context:
space:
mode:
Diffstat (limited to 'core/controllers/admin_graphics.php')
-rw-r--r--core/controllers/admin_graphics.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/core/controllers/admin_graphics.php b/core/controllers/admin_graphics.php
index 1624c896..6676a808 100644
--- a/core/controllers/admin_graphics.php
+++ b/core/controllers/admin_graphics.php
@@ -24,8 +24,8 @@ class Admin_Graphics_Controller extends Admin_Controller {
$view->content->available = "";
$tk = new ArrayObject(graphics::detect_toolkits(), ArrayObject::ARRAY_AS_PROPS);
- $active = module::get_var("core", "graphics_toolkit");
- foreach (array("gd", "imagemagick", "graphicsmagick") as $id) {
+ $active = module::get_var("core", "graphics_toolkit", "none");
+ foreach (array("gd", "imagemagick", "graphicsmagick", "none") as $id) {
if ($id == $active) {
$view->content->active = new View("admin_graphics_$id.html");
$view->content->active->tk = $tk;