Ignore:
Timestamp:
Dec 28, 2013, 6:08:42 PM (10 years ago)
Author:
mistic100
Message:

update for 2.6 + better calculation + option to force ratio
TODO: issue with PNG (unable to generate thumbnail with IM)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • extensions/header_manager/admin/album.php

    r24010 r26298  
    11<?php
    2 // +-----------------------------------------------------------------------+
    3 // | Piwigo - a PHP based photo gallery                                    |
    4 // +-----------------------------------------------------------------------+
    5 // | Copyright(C) 2008-2012 Piwigo Team                  http://piwigo.org |
    6 // | Copyright(C) 2003-2008 PhpWebGallery Team    http://phpwebgallery.net |
    7 // | Copyright(C) 2002-2003 Pierrick LE GALL   http://le-gall.net/pierrick |
    8 // +-----------------------------------------------------------------------+
    9 // | This program is free software; you can redistribute it and/or modify  |
    10 // | it under the terms of the GNU General Public License as published by  |
    11 // | the Free Software Foundation                                          |
    12 // |                                                                       |
    13 // | This program is distributed in the hope that it will be useful, but   |
    14 // | WITHOUT ANY WARRANTY; without even the implied warranty of            |
    15 // | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU      |
    16 // | General Public License for more details.                              |
    17 // |                                                                       |
    18 // | You should have received a copy of the GNU General Public License     |
    19 // | along with this program; if not, write to the Free Software           |
    20 // | Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, |
    21 // | USA.                                                                  |
    22 // +-----------------------------------------------------------------------+
    23 
    24 if(!defined("PHPWG_ROOT_PATH")) die ("Hacking attempt!");
     2defined('HEADER_MANAGER_PATH') or die ("Hacking attempt!");
    253
    264// +-----------------------------------------------------------------------+
     
    4725}
    4826
     27$cat_id = $_GET['cat_id'];
     28
     29
    4930// +-----------------------------------------------------------------------+
    5031// | Tabs                                                                  |
     
    6041
    6142
    62 $cat_id = $_GET['cat_id'];
    63 
    64 
    6543// +-----------------------------------------------------------------------+
    6644// | Save Form                                                             |
     
    6846if (isset($_POST['save_banner']))
    6947{
    70   if ( !isset($_POST['image']) or $_POST['image'] == 'default')
     48  if (!isset($_POST['image']) or $_POST['image'] == 'default')
    7149  {
    7250    $query = '
     
    136114));
    137115
    138 $template->set_filename('header_manager', dirname(__FILE__).'/template/album.tpl');
    139 
    140 ?>
     116$template->set_filename('header_manager', realpath(HEADER_MANAGER_PATH . 'admin/template/album.tpl'));
Note: See TracChangeset for help on using the changeset viewer.