Development

Changeset 7803

You must first sign up to be able to contribute.

Changeset 7803

Show
Ignore:
Timestamp:
03/11/08 10:26:07 (7 months ago)
Author:
FabianLange
Message:

fixed "Cannot unset string offsets" error also for 1.1

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • branches/1.1/lib/helper/UrlHelper.php

    r7795 r7803  
    165165  if ($condition) 
    166166  { 
    167     unset($options['tag']); 
     167    if (isset($options['tag'])) 
     168    { 
     169      unset($options['tag']); 
     170    } 
    168171    return link_to($name, $internal_uri, $options); 
    169172  }