summaryrefslogtreecommitdiff
path: root/modules/system/system.module
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2008-07-08 01:08:15 +0000
committerDries Buytaert <dries@buytaert.net>2008-07-08 01:08:15 +0000
commitffdfefebbccc2a7fedfec541f05f1c770e2bcc01 (patch)
tree0f30b2f6bb8085e61fc1862e321b5cf98a7636a3 /modules/system/system.module
parenta4883506e3064c1acf554d118ccf8a2ef09ad8d6 (diff)
downloadbrdo-ffdfefebbccc2a7fedfec541f05f1c770e2bcc01.tar.gz
brdo-ffdfefebbccc2a7fedfec541f05f1c770e2bcc01.tar.bz2
- Patch #270508 by paul.levvik and pwolanin: usability improvement: image toolkits should not have to be copied.
Diffstat (limited to 'modules/system/system.module')
-rw-r--r--modules/system/system.module7
1 files changed, 7 insertions, 0 deletions
diff --git a/modules/system/system.module b/modules/system/system.module
index b34c39f55..b1e5d2897 100644
--- a/modules/system/system.module
+++ b/modules/system/system.module
@@ -2105,3 +2105,10 @@ function theme_meta_generator_html($version = VERSION) {
function theme_meta_generator_header($version = VERSION) {
drupal_set_header('X-Generator: Drupal ' . $version . ' (http://drupal.org)');
}
+
+/**
+ * Implementation of hook_image_toolkits().
+ */
+function system_image_toolkits() {
+ return array('gd');
+}