Changeset 2220


Ignore:
Timestamp:
Feb 27, 2008, 10:58:20 PM (16 years ago)
Author:
rub
Message:

little corrections

Location:
branches/branch-1_7/include
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/branch-1_7/include/functions.inc.php

    r2125 r2220  
    33// | PhpWebGallery - a PHP based picture gallery                           |
    44// | Copyright (C) 2002-2003 Pierrick LE GALL - pierrick@phpwebgallery.net |
    5 // | Copyright (C) 2003-2007 PhpWebGallery Team - http://phpwebgallery.net |
     5// | Copyright (C) 2003-2008 PhpWebGallery Team - http://phpwebgallery.net |
    66// +-----------------------------------------------------------------------+
    77// | file          : $Id$
     
    575575    \''.$_SERVER['REMOTE_ADDR'].'\',
    576576    '.(isset($page['section']) ? "'".$page['section']."'" : 'NULL').',
    577     '.(isset($page['category']) ? $page['category']['id'] : 'NULL').',
     577    '.(isset($page['category']['id']) ? $page['category']['id'] : 'NULL').',
    578578    '.(isset($image_id) ? $image_id : 'NULL').',
    579579    '.(isset($image_type) ? "'".$image_type."'" : 'NULL').',
     
    705705    ob_clean();
    706706  }
     707  // default url is on html format
     708  $url = html_entity_decode($url);
    707709  header('Request-URI: '.$url);
    708710  header('Content-Location: '.$url);
  • branches/branch-1_7/include/functions_user.inc.php

    r2177 r2220  
    33// | PhpWebGallery - a PHP based picture gallery                           |
    44// | Copyright (C) 2002-2003 Pierrick LE GALL - pierrick@phpwebgallery.net |
    5 // | Copyright (C) 2003-2007 PhpWebGallery Team - http://phpwebgallery.net |
     5// | Copyright (C) 2003-2008 PhpWebGallery Team - http://phpwebgallery.net |
    66// +-----------------------------------------------------------------------+
    77// | file          : $Id$
     
    11661166      break;
    11671167    }
    1168     case 'default':
     1168    default:
    11691169    {
    11701170      $access_type_status = ACCESS_NONE;
     1171      break;
    11711172    }
    11721173  }
Note: See TracChangeset for help on using the changeset viewer.