From: Chris W. <la...@us...> - 2005-09-25 15:19:39
|
Update of /cvsroot/openinteract/OpenInteract2/pkg/news/OpenInteract2/Action In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv5825/pkg/news/OpenInteract2/Action Modified Files: News.pm Log Message: don't fetch sections anymore Index: News.pm =================================================================== RCS file: /cvsroot/openinteract/OpenInteract2/pkg/news/OpenInteract2/Action/News.pm,v retrieving revision 1.13 retrieving revision 1.14 diff -C2 -d -r1.13 -r1.14 *** News.pm 2 Mar 2005 15:21:44 -0000 1.13 --- News.pm 25 Sep 2005 15:19:24 -0000 1.14 *************** *** 23,28 **** sub home { my ( $self ) = @_; ! return $self->generate_content( ! { section_list => $self->_get_sections } ); } --- 23,27 ---- sub home { my ( $self ) = @_; ! return $self->generate_content(); } *************** *** 108,112 **** : ' AND ( expires_on IS NULL OR expires_on > ? ) '; push @values, $now_string; - if ( my $section = $self->param( 'section' ) ) { $where .= ' AND ( section = ? )'; --- 107,110 ---- |