Development

Changeset 7802

You must first sign up to be able to contribute.

Changeset 7802

Show
Ignore:
Timestamp:
03/11/08 09:49:00 (7 months ago)
Author:
FabianLange
Message:

fixed "Cannot unset string offsets" error

Files:

Legend:

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

    r7794 r7802  
    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  }