Committer: amyshkin
LJSUP-8061: Add ability to hide reposted entries in the friends page.U trunk/cgi-bin/weblib.pl
Modified: trunk/cgi-bin/weblib.pl =================================================================== --- trunk/cgi-bin/weblib.pl 2011-09-12 07:37:05 UTC (rev 20018) +++ trunk/cgi-bin/weblib.pl 2011-09-12 07:37:49 UTC (rev 20019) @@ -597,8 +597,8 @@ # returns: HTML hidden field to be inserted into the output of a page. # </LJFUNC> sub repost_auth { - my ($type, $username, $url, $raw) = @_; - my $str = join( ':', map ( LJ::eurl($_), $type, $username, $url)); + my ($type, $username, $url, $subject, $raw) = @_; + my $str = join( ':', map ( LJ::eurl($_), $type, $username, $url, $subject)); my $auth = Digest::MD5::md5_hex( $str . $LJ::REPOST_SECRET ); return $auth if $raw;