[Debtags-commits] [svn] r1507 - central-database/branches/alioth/webfrontend

Enrico Zini enrico at costa.debian.org
Fri Nov 18 14:14:55 UTC 2005


Author: enrico
Date: Fri Nov 18 14:14:53 2005
New Revision: 1507

Modified:
   central-database/branches/alioth/webfrontend/edit.cgi
Log:
edit.cgi was still calling the old Engine::facet()

Modified: central-database/branches/alioth/webfrontend/edit.cgi
==============================================================================
--- central-database/branches/alioth/webfrontend/edit.cgi	(original)
+++ central-database/branches/alioth/webfrontend/edit.cgi	Fri Nov 18 14:14:53 2005
@@ -141,12 +141,12 @@
 			}
 		} elsif ($par eq 'fhide') {
 			my $fac = sanitize(param($par));
-			my ($f) = Engine::facet($fac);
+			my ($f) = Engine::facets($fac);
 			$hidden_facets{$f->name} = 1
 				if defined $f;
 		} elsif ($par eq 'fdel') {
 			my $fac = sanitize(param($par));
-			my ($f) = Engine::facet($fac);
+			my ($f) = Engine::facets($fac);
 			if (defined $f)
 			{
 				my @tags = grep { $p->hasTag($_) } $f->tags;



More information about the Debtags-commits mailing list