]> git.llucax.com Git - software/bife/bife-all.git/blobdiff - src/Album.php
- Added package.xml to make a PEAR package.
[software/bife/bife-all.git] / src / Album.php
index 5cb8c8d55059cf6f010389a3a3eb5a26486313d2..7ec9ca0ee7cc492f0b06673c6e1e4cdf4720533a 100644 (file)
@@ -28,8 +28,6 @@
 // $Id$
 //
 
 // $Id$
 //
 
-require_once 'PEAR.php';
-require_once 'Util.php';
 require_once 'Image/Transform.php';
 require_once 'HTML/Template/Sigma.php';
 
 require_once 'Image/Transform.php';
 require_once 'HTML/Template/Sigma.php';
 
@@ -40,9 +38,9 @@ require_once 'HTML/Template/Sigma.php';
  *
  * @package     Hooks
  * @subpackage  Album
  *
  * @package     Hooks
  * @subpackage  Album
+ * @author      Leandro Lucarella <luca@lugmen.org.ar>
  * @author      Harpo Maxx <harpo@lugmen.org.ar>
  * @author      Groucho Marx <groucho@lugmen.org.ar>
  * @author      Harpo Maxx <harpo@lugmen.org.ar>
  * @author      Groucho Marx <groucho@lugmen.org.ar>
- * @author      Leandro Lucarella <luca@lugmen.org.ar>
  * @version     $Rev$
  * @since       rev 130
  * @access      public
  * @version     $Rev$
  * @since       rev 130
  * @access      public
@@ -145,7 +143,7 @@ class Hook_Album {
     function photo($photo) {
         list($path, $name, $ext) = File_Util::splitFilename($photo);
         $tpl =& new HTML_Template_Sigma('.');
     function photo($photo) {
         list($path, $name, $ext) = File_Util::splitFilename($photo);
         $tpl =& new HTML_Template_Sigma('.');
-        $tpl->loadTemplateFile('photo.html');
+        $tpl->loadTemplateFile('bife_album_photo.html');
         $tpl->setVariable(
             array(
                 'DESC'  => $name,
         $tpl->setVariable(
             array(
                 'DESC'  => $name,
@@ -176,7 +174,7 @@ class Hook_Album {
         $img->load($photo);
         // If image is larger than the maximum size, we resize it.
         if ($img->img_x > $size or $img->img_y > $size ) {
         $img->load($photo);
         // If image is larger than the maximum size, we resize it.
         if ($img->img_x > $size or $img->img_y > $size ) {
-            if (!is_dir($path) and !mkdir($path)) {
+            if (!@is_dir($path) and !@mkdir($path)) {
                 return false;
             }
             if (PEAR::isError($img)) {
                 return false;
             }
             if (PEAR::isError($img)) {