mark: A photo of Mark kneeling on top of the Taal Volcano in the Philippines. It was a long hike. (Default)
Mark Smith ([staff profile] mark) wrote in [site community profile] changelog2009-02-27 02:12 am

[dw-free] adult contect redirect on comments when logged out

[commit: http://hg.dwscoalition.org/dw-free/rev/8f420118d51d]

http://bugs.dwscoalition.org/show_bug.cgi?id=389

Fix redirect in adult content.

Patch by [personal profile] exor674.

--------------------------------------------------------------------------------
diff -r 850d8c109b96 -r 8f420118d51d cgi-bin/Apache/LiveJournal.pm
--- a/cgi-bin/Apache/LiveJournal.pm	Fri Feb 27 02:11:00 2009 +0000
+++ b/cgi-bin/Apache/LiveJournal.pm	Fri Feb 27 02:12:31 2009 +0000
@@ -466,7 +466,7 @@ sub trans
             my $is_journal_page = !$opts->{mode} || $journal_pages{$opts->{mode}};
 
             if ($adult_content ne "none" && $is_journal_page && !$should_show_page) {
-                my $returl = LJ::eurl("http://$host" . $r->uri . "$args_wq");
+                my $returl = "http://$host" . $r->uri . "$args_wq";
 
                 LJ::ContentFlag->check_adult_cookie($returl, \%BMLCodeBlock::POST, "concepts");
                 LJ::ContentFlag->check_adult_cookie($returl, \%BMLCodeBlock::POST, "explicit");
--------------------------------------------------------------------------------