Ignore:
Timestamp:
Oct 21, 2012, 3:58:35 PM (12 years ago)
Author:
mistic100
Message:

remove warnings in some cases when there are no banners

File:
1 edited

Legend:

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

    r18474 r18710  
    2222    'width' => $conf['header_manager']['width'],
    2323    'height' => $conf['header_manager']['height'],
    24     'image' => $_POST['image'],
     24    'image' => @$_POST['image'],
    2525    'display' => $_POST['display'],
    2626    'banner_on_picture' => isset($_POST['banner_on_picture']),
     
    6060
    6161// config template
    62 if (get_banner($conf['header_manager']['image']) === false)
     62if ( empty($conf['header_manager']['image']) or get_banner($conf['header_manager']['image']) === false )
    6363{
    6464  $conf['header_manager']['image'] = 'random';
Note: See TracChangeset for help on using the changeset viewer.