diff options
author | Bharat Mediratta <bharat@menalto.com> | 2009-01-14 01:20:42 +0000 |
---|---|---|
committer | Bharat Mediratta <bharat@menalto.com> | 2009-01-14 01:20:42 +0000 |
commit | ca36a04f28c1f8fad475617dd36e1c2861fdbaf1 (patch) | |
tree | b8873d2155e463a52c7cf95870c282b1b1cee43b | |
parent | c9e6b1ef4474f02e98f48143277620e72105f8bb (diff) |
Fix preamble
-rw-r--r-- | core/views/admin_graphics_gd.html.php | 1 | ||||
-rw-r--r-- | core/views/admin_graphics_graphicsmagick.html.php | 1 | ||||
-rw-r--r-- | core/views/admin_graphics_imagemagick.html.php | 1 |
3 files changed, 3 insertions, 0 deletions
diff --git a/core/views/admin_graphics_gd.html.php b/core/views/admin_graphics_gd.html.php index 8b4644ac..b238401f 100644 --- a/core/views/admin_graphics_gd.html.php +++ b/core/views/admin_graphics_gd.html.php @@ -1,3 +1,4 @@ +<?php defined("SYSPATH") or die("No direct script access.") ?> <div id="gd" class="gBlock <?= $tk->gd["GD Version"] ? "" : "unavailable" ?>"> <img class="logo" width="170" height="110" src="<?= url::file("core/images/gd.png"); ?>" alt="<? t("Visit the GD lib project site") ?>" /> <h3> <?= t("GD") ?> </h3> diff --git a/core/views/admin_graphics_graphicsmagick.html.php b/core/views/admin_graphics_graphicsmagick.html.php index 57553e4b..8dc1d714 100644 --- a/core/views/admin_graphics_graphicsmagick.html.php +++ b/core/views/admin_graphics_graphicsmagick.html.php @@ -1,3 +1,4 @@ +<?php defined("SYSPATH") or die("No direct script access.") ?> <div id="graphicsmagick" class="gBlock <?= $tk->graphicsmagick ? "" : "unavailable" ?>"> <h3> <?= t("GraphicsMagick") ?> </h3> <img class="logo" width="107" height="76" src="<?= url::file("core/images/graphicsmagick.png"); ?>" alt="<? t("Visit the GraphicsMagick project site") ?>" /> diff --git a/core/views/admin_graphics_imagemagick.html.php b/core/views/admin_graphics_imagemagick.html.php index 29d19668..02a18ac8 100644 --- a/core/views/admin_graphics_imagemagick.html.php +++ b/core/views/admin_graphics_imagemagick.html.php @@ -1,3 +1,4 @@ +<?php defined("SYSPATH") or die("No direct script access.") ?> <div id="imagemagick" class="gBlock <?= $tk->imagemagick ? "" : "unavailable" ?>"> <h3> <?= t("ImageMagick") ?> </h3> <img class="logo" width="114" height="118" src="<?= url::file("core/images/imagemagick.jpg"); ?>" alt="<? t("Visit the ImageMagick project site") ?>" /> |