Home : Products : Others : Gossamer Community :

Products: Others: Gossamer Community: Re: [klauslovgreen] css issue: Edit Log

Here is the list of edits for this post
Re: [klauslovgreen] css issue
Hi,

This is indeed a bug. To fix, edit lib/Community/Web/User.pm and change around line 804 to:

$vars->{$global} = $globals->{$global} unless (exists $vars->{$global});

to:

Code:
unless (exists $vars->{$global}) {
$vars->{$global} = ref $globals->{$global} ?
$globals->{$global} :
\$globals->{$global};
}

You'll also want to make the same change to Web/Admin.pm line 113.

Cheers,

Alex
--
Gossamer Threads Inc.

Last edited by:

Alex: Mar 13, 2003, 2:16 PM

Edit Log: