# part of this distribution.
use strict;
package LJ::S2;
# these are needed for S2::PROPS
use DW;
use lib DW->home . "/src/s2";
use S2;
use Carp;
sub EntryPage
And the line using S2::PROPS :
my $comment_userpic;
my $comment_userpic_style = $opts->{ctx}->[S2::PROPS]->{comment_userpic_style};
if ( ( my $pic = $userpic{$com->{picid}} ) && ( $comment_userpic_style ne 'off' ) ) {
no subject
And the line using S2::PROPS :
my $comment_userpic; my $comment_userpic_style = $opts->{ctx}->[S2::PROPS]->{comment_userpic_style}; if ( ( my $pic = $userpic{$com->{picid}} ) && ( $comment_userpic_style ne 'off' ) ) {I do appreciate all the help!
TDP.