Committer: ailyin
LJSUP-14177 ([Friends Feed] Ability to switch types of paging)U trunk/htdocs/customize/index.bml
Modified: trunk/htdocs/customize/index.bml =================================================================== --- trunk/htdocs/customize/index.bml 2012-12-03 13:55:16 UTC (rev 23408) +++ trunk/htdocs/customize/index.bml 2012-12-03 14:18:18 UTC (rev 23409) @@ -62,7 +62,7 @@ return BML::redirect("$LJ::SITEROOT/customize/options.bml$getextra"); } - my @errors = LJ::Widget->handle_post(\%POST, qw(JournalTitles ThemeChooser ThemeNav LayoutChooser AdLayout)); + my @errors = LJ::Widget->handle_post(\%POST, qw(JournalTitles ThemeChooser ThemeNav LayoutChooser AdLayout CustomizeFriendsFeed)); $ret .= LJ::bad_input(@errors) if @errors; } @@ -110,6 +110,9 @@ $ret .= $layout_chooser->render( headextra => \$headextra ); $ret .= "</div><!-- end .layout-selector-wrapper' -->"; + my $customize_friendsfeed = LJ::Widget::CustomizeFriendsFeed->new; + $ret .= $customize_friendsfeed->render; + $ret .= "<form method='POST'><div class='theme-customize'>"; $ret .= LJ::form_auth(); $ret .= LJ::html_submit('nextpage', $ML{'.btn.nextpage'});