Gossamer Forum
Quote Reply
Fix Global
Hope someone can fix this global so it also works in dynamic mode, as is if I switch to dymamic mode and I select a category it takes me back to static url.

I suspect that a change needs to be made here.

$output .= qq|<option value="$CFG->{build_root_url}/| . $db->as_url($safe_full) . qq|">$back</option>|. "\n";}





sub {
my ($category,$output);
my $db = $DB->table('Category') || return $GT::SQL::error;
$db->select_options('ORDER BY Full_Name','LIMIT 275') || return $GT::SQL::error;
my $sth = $db->select( ['ID','Full_Name'], { FatherID => '0' }) || return $GT::SQL::error;
$output .= qq|<select name="nnn-DeptSelect" onchange="top.location=this.options[this.selectedIndex].value" size="1">\n|;
$output .= qq|<option selected>Hop to Category</option>\n|;
while (my ($id,$full_name) = $sth->fetchrow_array) {
my $safe_full = $full_name;
my @cut = split /\//, $full_name;
my $back = '';
for (my $i=0; $i < $#cut; $i++) {
$back .= q| |;
}
$back .= $cut[$#cut];
$output .= qq|<option value="$CFG->{build_root_url}/| . $db->as_url($safe_full) . qq|">$back</option>|. "\n";}
$output .= "</select>\n";
return \$output;
}

Happy Holidays To All
Subject Author Views Date
Thread Fix Global rascal 5137 Dec 22, 2006, 10:43 PM
Thread Re: [rascal] Fix Global
SandraR 5027 Dec 23, 2006, 8:18 AM
Thread Re: [SandraR] Fix Global
rascal 5006 Dec 23, 2006, 4:30 PM
Thread Re: [rascal] Fix Global
SandraR 5007 Dec 23, 2006, 6:21 PM
Thread Re: [SandraR] Fix Global
rascal 4963 Jan 17, 2007, 9:01 PM
Thread Re: [rascal] Fix Global
tandat 4954 Jan 17, 2007, 10:20 PM
Thread Re: [tandat] Fix Global
rascal 4939 Jan 18, 2007, 8:23 AM
Thread Re: [rascal] Fix Global
tandat 4950 Jan 18, 2007, 8:37 AM
Post Re: [tandat] Fix Global
rascal 4917 Jan 18, 2007, 8:47 PM
Post Re: [rascal] Fix Global
Andy 4861 Mar 9, 2007, 12:34 AM