
interchange-cvs at icdevgroup
Sep 1, 2009, 4:29 PM
Post #1 of 1
(203 views)
Permalink
|
|
[SCM] Interchange branch, master, updated. a008a86f4121a7a9b554d5139d1b5167ec23357e
|
|
This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project "Interchange". The branch, master has been updated via a008a86f4121a7a9b554d5139d1b5167ec23357e (commit) from 71584254cd8d3f5dca445aafe6ebe2cbdfd02cae (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit a008a86f4121a7a9b554d5139d1b5167ec23357e Author: Peter Ajamian <peter [at] pajamian> Date: Tue Sep 1 16:27:45 2009 -0700 Fix "my" scoping bug that was preventing ncheck_category from working. I just removed $o alltogether as it's not needed. ----------------------------------------------------------------------- Summary of changes and diff: dist/standard/catalog.cfg | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/dist/standard/catalog.cfg b/dist/standard/catalog.cfg index 19a6b77..4d5c907 100644 --- a/dist/standard/catalog.cfg +++ b/dist/standard/catalog.cfg @@ -700,7 +700,7 @@ sub { $CGI->{sp} = 'results'; $CGI->{mv_todo} = 'search'; $Tag->update('process'); - if ((my $o = $Search->{''}) && @{$o->{mv_results}}) { + if ($Search->{''} && @{$Search->{''}->{mv_results}}) { return (1, $Config->{Special}->{results}); } hooks/post-receive -- Interchange _______________________________________________ interchange-cvs mailing list interchange-cvs [at] icdevgroup http://www.icdevgroup.org/mailman/listinfo/interchange-cvs
|