diff options
author | Silvio <s1lv10@uol.com.br> | 2010-04-27 18:29:29 -0300 |
---|---|---|
committer | Silvio <s1lv10@uol.com.br> | 2010-04-27 18:29:29 -0300 |
commit | b69b1c6c7de82c2b1c943d9f31b7e659ab4e1924 (patch) | |
tree | 9a5d5080653f58382171db9b7158a166a60f33d3 /exif.install | |
parent | 0d60e32584aeb64d0f4b8844c5ef49e57a0eada2 (diff) | |
download | exif-b69b1c6c7de82c2b1c943d9f31b7e659ab4e1924.tar.gz exif-b69b1c6c7de82c2b1c943d9f31b7e659ab4e1924.tar.bz2 |
Syncing to CVS head with proposed changes applied by the module maintainer
Diffstat (limited to 'exif.install')
-rwxr-xr-x | exif.install | 15 |
1 files changed, 1 insertions, 14 deletions
diff --git a/exif.install b/exif.install index f0f9fbd..cc1373d 100755 --- a/exif.install +++ b/exif.install @@ -1,5 +1,5 @@ <?php -// $Id: exif.install,v 1.4.2.5 2010/03/19 22:17:00 rapsli Exp $ +// $Id: exif.install,v 1.4.2.6 2010/04/27 20:53:13 rapsli Exp $ /** * @file the install part of the module */ @@ -22,18 +22,5 @@ function exif_requirements($phase) { ); } } - - if ($phase == 'runtime' || $phase == 'install') { - $xmp = class_exists('SXMPFiles'); - $requirements['xmp'] = array( - 'title' => $t('XMP'), - 'value' => $xmp, - ); - if (!$xmp) { - $requirements['xmp']['description'] = $t("You don't have XMP Toolkit installed in your system."); - $requirements['xmp']['severity'] = REQUIREMENT_ERROR; - } - } - return $requirements; } |