Gossamer Forum
Home : Products : Gossamer Links : Discussions :

Re: editor rights

Quote Reply
Re: editor rights In reply to
I found a solution, namely:

sub {
my $tags = shift;
my $ed_db = $DB->table('Editors', 'Users');
my $user = $tags->{Username};
my $sth = $ed_db->select ( { 'Editors.Username' => $user } );
my $editor_info = $sth->fetchrow_hashref;
return $editor_info;
}

I forgot the: my $user = $tags->{Username};

but how can I set the names of the categories, in which the user are editor, and the links they own???
I have to make a combination with the category & linkstable, but how????

Subject Author Views Date
Thread editor rights ridesworld 2326 Mar 20, 2001, 1:46 PM
Thread Re: editor rights
Stealth 2268 Mar 20, 2001, 6:30 PM
Post Re: editor rights
ridesworld 2260 Mar 21, 2001, 12:43 AM
Thread Re: editor rights
ridesworld 2236 Mar 21, 2001, 1:53 PM
Thread Re: editor rights
Alex 2224 Mar 23, 2001, 10:47 AM
Thread Re: editor rights
ridesworld 2214 Mar 23, 2001, 1:03 PM
Post Re: editor rights
ridesworld 2212 Mar 24, 2001, 8:16 AM