vadvs (vadvs) wrote in changelog,
vadvs
vadvs
changelog

[ljcom] r11449: LJSUP-11194: Update ?v= value for static...

Committer: vad
LJSUP-11194: Update ?v= value for static files
U   trunk/cgi-bin/LJ/Hooks/Caps.pm
U   trunk/cgi-bin/LJ/Hooks/ControlStrip.pm
U   trunk/cgi-bin/LJ/Hooks/Customize.pm
U   trunk/cgi-bin/LJ/Hooks/ESN.pm
U   trunk/cgi-bin/LJ/Hooks/Login.pm
U   trunk/cgi-bin/LJ/Hooks/MoodThemes.pm
U   trunk/cgi-bin/LJ/Hooks/SMS.pm
U   trunk/cgi-bin/LJ/Hooks/Search.pm
U   trunk/cgi-bin/LJ/Hooks/Userinfo.pm
U   trunk/cgi-bin/LJ/Hooks/Userpics.pm
Modified: trunk/cgi-bin/LJ/Hooks/Caps.pm
===================================================================
--- trunk/cgi-bin/LJ/Hooks/Caps.pm	2012-02-08 16:33:58 UTC (rev 11448)
+++ trunk/cgi-bin/LJ/Hooks/Caps.pm	2012-02-08 16:39:17 UTC (rev 11449)
@@ -13,11 +13,11 @@
     my $ret = "";
 
     if (LJ::caps_in_group($caps, 'perm')) {
-        $ret .= "<img src='$LJ::IMGPREFIX/perm.gif' />";
+        $ret .= "<img src='$LJ::IMGPREFIX/perm.gif?v=6868' />";
     } elsif (LJ::caps_in_group($caps, 'paid')) {
-        $ret .= "<img src='$LJ::IMGPREFIX/paid.gif' />";
+        $ret .= "<img src='$LJ::IMGPREFIX/paid.gif?v=8866' />";
     } elsif (LJ::caps_in_group($caps, 'early')) {
-        $ret .= "<img src='$LJ::IMGPREFIX/early.gif' />";
+        $ret .= "<img src='$LJ::IMGPREFIX/early.gif?v=6868' />";
     }
     return $ret;
 });
@@ -216,7 +216,7 @@
     my ($u, $class, %opts) = @_;
 
     my $upgrade_text = LJ::Lang::ml('ljcom.upgrade_link.text');
-    my $upgrade_img = "<img src='$LJ::STATPREFIX/horizon/upgrade-paid-icon.gif' alt=\"$upgrade_text\" title=\"$upgrade_text\" />";
+    my $upgrade_img = "<img src='$LJ::STATPREFIX/horizon/upgrade-paid-icon.gif?v=2621' alt=\"$upgrade_text\" title=\"$upgrade_text\" />";
 
     my $upgrade_link = "$LJ::SITEROOT/manage/account/";
     if ($u->is_community) {

Modified: trunk/cgi-bin/LJ/Hooks/ControlStrip.pm
===================================================================
--- trunk/cgi-bin/LJ/Hooks/ControlStrip.pm	2012-02-08 16:33:58 UTC (rev 11448)
+++ trunk/cgi-bin/LJ/Hooks/ControlStrip.pm	2012-02-08 16:39:17 UTC (rev 11449)
@@ -238,11 +238,11 @@
 });
 
 LJ::register_hook('control_strip_userpic_contents', sub {
-    return "<a href='$LJ::SITEROOT/'><img src='$LJ::IMGPREFIX/controlstrip/ljlogo-transparent.gif' border='0' alt='Home' title='Home' /></a>";
+    return "<a href='$LJ::SITEROOT/'><img src='$LJ::IMGPREFIX/controlstrip/ljlogo-transparent.gif?v=5521' border='0' alt='Home' title='Home' /></a>";
 });
 
 LJ::register_hook('control_strip_loggedout_userpic_contents', sub {
-    return "<a href='$LJ::SITEROOT/'><img src='$LJ::IMGPREFIX/controlstrip/ljlogo-transparent-loggedout.gif' border='0' alt='Home' title='Home' /></a>";
+    return "<a href='$LJ::SITEROOT/'><img src='$LJ::IMGPREFIX/controlstrip/ljlogo-transparent-loggedout.gif?v=5521' border='0' alt='Home' title='Home' /></a>";
 });
 
 LJ::register_hook('control_strip_learnmore_link', sub {

Modified: trunk/cgi-bin/LJ/Hooks/Customize.pm
===================================================================
--- trunk/cgi-bin/LJ/Hooks/Customize.pm	2012-02-08 16:33:58 UTC (rev 11448)
+++ trunk/cgi-bin/LJ/Hooks/Customize.pm	2012-02-08 16:39:17 UTC (rev 11449)
@@ -293,7 +293,7 @@
     $needed_acct_type = "plus" if $plus_allow_layers{$theme->uniq} || $plus_allow_layers{$theme->layout_uniq};
 
     my $ret = "<a href='$upgrade_url' class='theme-upgrade-icon'>";
-    $ret .= "<img src='$LJ::STATPREFIX/horizon/upgrade-paid-icon-small.gif' border='0' />";
+    $ret .= "<img src='$LJ::STATPREFIX/horizon/upgrade-paid-icon-small.gif?v=4320' border='0' />";
     $ret .= "<span class='theme-upgrade-level'>";
     if ($needed_acct_type eq "plus") {
         $ret .= LJ::Lang::ml('ljcom.customize.specialicons.plustext');
@@ -314,7 +314,7 @@
     my $dt = DateTime->from_epoch( epoch => $end_time, time_zone => 'America/Los_Angeles' );
 
     my $ret = "<a href='' class='theme-time'>";
-    $ret .= "<img src='$LJ::IMGPREFIX/customize/clock.gif' border='0' />";
+    $ret .= "<img src='$LJ::IMGPREFIX/customize/clock.gif?v=12565' border='0' />";
     $ret .= "<span class='theme-availability'>";
     $ret .= LJ::Lang::ml('ljcom.customize.availableuntil.text', {'mm' => $dt->strftime("%m"), 'dd' => $dt->strftime("%d"), 'yy' => $dt->strftime("%y")});
     $ret .= "</span></a>";
@@ -327,7 +327,7 @@
 
     my $upgrade_url = $u->is_comm ? "$LJ::SITEROOT/shop/view.bml?item=paidaccount&gift=1&for=" . $u->user : "$LJ::SITEROOT/manage/account/";
 
-    return " <a href='$upgrade_url'><img src='$LJ::STATPREFIX/horizon/upgrade-paid-icon-small.gif' border='0' /></a>";
+    return " <a href='$upgrade_url'><img src='$LJ::STATPREFIX/horizon/upgrade-paid-icon-small.gif?v=4320' border='0' /></a>";
 });
 
 LJ::register_hook("skip_prop_override", sub {

Modified: trunk/cgi-bin/LJ/Hooks/ESN.pm
===================================================================
--- trunk/cgi-bin/LJ/Hooks/ESN.pm	2012-02-08 16:33:58 UTC (rev 11448)
+++ trunk/cgi-bin/LJ/Hooks/ESN.pm	2012-02-08 16:39:17 UTC (rev 11449)
@@ -159,7 +159,7 @@
     } else {
         return qq{
             <a href="$LJ::SITEROOT/support/faqbrowse.bml?faqid=225">
-                <img src="$LJ::STATPREFIX/img/help.gif">
+                <img src="$LJ::STATPREFIX/img/help.gif?v=6803">
             </a>
         };
     }

Modified: trunk/cgi-bin/LJ/Hooks/Login.pm
===================================================================
--- trunk/cgi-bin/LJ/Hooks/Login.pm	2012-02-08 16:33:58 UTC (rev 11448)
+++ trunk/cgi-bin/LJ/Hooks/Login.pm	2012-02-08 16:39:17 UTC (rev 11449)
@@ -77,16 +77,16 @@
         $ret .= "<ul class='nostyle' style='margin-bottom: 15px;'>\n";
         $ret .= "<li><img src='<?imgprefix?>/journal.gif' alt='' /> <a href='" . $u->journal_base . "/friends/' style='font-weight: bold'>" . LJ::Lang::ml('/index.bml.loggedin.link2') . "</a><br />";
         $ret .= LJ::Lang::ml('/index.bml.loggedin.link2.text') . "</li>";
-        $ret .= "<li><img src='<?imgprefix?>/search.gif' alt='' /> <a href='$LJ::SITEROOT/interests.bml' style='font-weight: bold'>" . LJ::Lang::ml('/index.bml.loggedin.quicklink3') . "</a><br />";
+        $ret .= "<li><img src='<?imgprefix?>/search.gif?v=2135' alt='' /> <a href='$LJ::SITEROOT/interests.bml' style='font-weight: bold'>" . LJ::Lang::ml('/index.bml.loggedin.quicklink3') . "</a><br />";
         $ret .= LJ::Lang::ml('/index.bml.loggedin.quicklink3.text') . "</li>";
         if ($news) {
-            $ret .= "<li><img src='<?imgprefix?>/newsinfo.gif' alt='' /> <a href='" . $news->journal_base . "/' style='font-weight: bold'>" . LJ::Lang::ml('/index.bml.loggedin.quicklink4') . "</a></li>";
+            $ret .= "<li><img src='<?imgprefix?>/newsinfo.gif?v=2990' alt='' /> <a href='" . $news->journal_base . "/' style='font-weight: bold'>" . LJ::Lang::ml('/index.bml.loggedin.quicklink4') . "</a></li>";
         }
         $ret .= "</ul>\n";
 
         if ($u->in_class('paid')) {
             $ret .= "<div class='standout-border pkg'>";
-            $ret .= "<a href='$LJ::SITEROOT/shop/'><img src='$LJ::IMGPREFIX/shop/bonusfeatures-small.png' alt='' style='float: left; margin: .25em .5em .25em .25em; border: none;' /></a>";
+            $ret .= "<a href='$LJ::SITEROOT/shop/'><img src='$LJ::IMGPREFIX/shop/bonusfeatures-small.png?v=1687' alt='' style='float: left; margin: .25em .5em .25em .25em; border: none;' /></a>";
             $ret .= "<a href='$LJ::SITEROOT/shop/'><strong>" . LJ::Lang::ml('/shop/view.bml.addons.title') . "</strong></a><br />";
             $ret .= LJ::Lang::ml('/shop/view.bml.addons.desc');
             $ret .= "</div>";

Modified: trunk/cgi-bin/LJ/Hooks/MoodThemes.pm
===================================================================
--- trunk/cgi-bin/LJ/Hooks/MoodThemes.pm	2012-02-08 16:33:58 UTC (rev 11448)
+++ trunk/cgi-bin/LJ/Hooks/MoodThemes.pm	2012-02-08 16:39:17 UTC (rev 11449)
@@ -61,15 +61,15 @@
 
     $ret .= "<div style='border: 1px solid #000; float: left; margin: 20px; padding: 20px;'>";
     $ret .= "<?p " . BML::ml('ljcom.moodtheme_upsell.creative', {
-            'img' => "<img src='$LJ::IMGPREFIX/mood/charitycam/mice/artistic.gif' align='middle' alt='creative' />",
+            'img' => "<img src='$LJ::IMGPREFIX/mood/charitycam/mice/artistic.gif?v=1621' align='middle' alt='creative' />",
         }) . " p?>";
 
     $ret .= "<?p " . BML::ml('ljcom.moodtheme_upsell.bored', {
-            'img' => "<img src='$LJ::IMGPREFIX/mood/purplelemon/sassips/blah.gif' align='middle' alt='bored' />",
+            'img' => "<img src='$LJ::IMGPREFIX/mood/purplelemon/sassips/blah.gif?v=1621' align='middle' alt='bored' />",
         }) . " p?>";
 
     $ret .= "<?p " . BML::ml('ljcom.moodtheme_upsell.original', {
-            'img' => "<img src='$LJ::IMGPREFIX/mood/twotone/hamsters/creative_hammy.gif' align='middle' alt='creative' />",
+            'img' => "<img src='$LJ::IMGPREFIX/mood/twotone/hamsters/creative_hammy.gif?v=1621' align='middle' alt='creative' />",
         }) . " p?>";
     $ret .= "</div>";
 

Modified: trunk/cgi-bin/LJ/Hooks/SMS.pm
===================================================================
--- trunk/cgi-bin/LJ/Hooks/SMS.pm	2012-02-08 16:33:58 UTC (rev 11448)
+++ trunk/cgi-bin/LJ/Hooks/SMS.pm	2012-02-08 16:39:17 UTC (rev 11449)
@@ -31,7 +31,7 @@
         } } @ordered;
 
     return qq {
-        <?block <img src="$LJ::IMGPREFIX/samplesms.jpg" style="float: left; margin-right: 3em;" /> block?>
+        <?block <img src="$LJ::IMGPREFIX/samplesms.jpg?v=3556" style="float: left; margin-right: 3em;" /> block?>
         <table>
             $content
         </table>

Modified: trunk/cgi-bin/LJ/Hooks/Search.pm
===================================================================
--- trunk/cgi-bin/LJ/Hooks/Search.pm	2012-02-08 16:33:58 UTC (rev 11448)
+++ trunk/cgi-bin/LJ/Hooks/Search.pm	2012-02-08 16:39:17 UTC (rev 11449)
@@ -4,7 +4,7 @@
 LJ::register_hook('browse_widget_extras', sub {
     my $ret;
 
-    $ret .= "<img src='$LJ::IMGPREFIX/explore/frnkradio.jpg' alt='' />";
+    $ret .= "<img src='$LJ::IMGPREFIX/explore/frnkradio.jpg?v=5886' alt='' />";
     $ret .= "<p><a href='$LJ::SITEROOT/radio/'><strong>" . LJ::Widget::Browse->ml('widget.browse.extras.radio') . "</strong></a><br />";
     $ret .= LJ::Widget::Browse->ml('widget.browse.extras.radio.desc', { sitename => $LJ::SITENAMESHORT }) . "</p>";
 

Modified: trunk/cgi-bin/LJ/Hooks/Userinfo.pm
===================================================================
--- trunk/cgi-bin/LJ/Hooks/Userinfo.pm	2012-02-08 16:33:58 UTC (rev 11448)
+++ trunk/cgi-bin/LJ/Hooks/Userinfo.pm	2012-02-08 16:39:17 UTC (rev 11449)
@@ -113,13 +113,13 @@
 
     my $online = '';
     if ($u->can_show_onlinestatus($remote)) {
-        $online = "<img src='$LJ::IMGPREFIX/profile_icons/jabber-off.gif' alt='$jab_title status: offline' title='$jab_title status: offline' align='absmiddle' />";
-        $online = "<img src='$LJ::IMGPREFIX/profile_icons/jabber.gif' alt='$jab_title status: online' title='$jab_title status: online' align='absmiddle' />"
+        $online = "<img src='$LJ::IMGPREFIX/profile_icons/jabber-off.gif?v=14273' alt='$jab_title status: offline' title='$jab_title status: offline' align='absmiddle' />";
+        $online = "<img src='$LJ::IMGPREFIX/profile_icons/jabber.gif?v=14273' alt='$jab_title status: online' title='$jab_title status: online' align='absmiddle' />"
             if ( $u->jabber_is_online );
     }
 
     my $ljtalk = $mangleaddress ? $mangleaddress->( $u->ljtalk_id ) : $u->ljtalk_id;
-    $ljtalk = "<span class='im_icon'><img src='$LJ::IMGPREFIX/profile_icons/ljtalk.gif' style='margin-left: 2px;' alt='$jab_title' title='$jab_title' /></span> <span class='im_info'><a href='$jab_link'>" . $ljtalk . "</a> $online</span>\n";
+    $ljtalk = "<span class='im_icon'><img src='$LJ::IMGPREFIX/profile_icons/ljtalk.gif?v=6648' style='margin-left: 2px;' alt='$jab_title' title='$jab_title' /></span> <span class='im_info'><a href='$jab_link'>" . $ljtalk . "</a> $online</span>\n";
 
     return $ljtalk;
 });
@@ -158,14 +158,14 @@
 
     if ($labels) {
         my $text = LJ::Lang::ml('ljcom.userinfo.comms.sponsored');
-        $$alt_clabel = "<img src='$LJ::IMGPREFIX/sponcomm.gif' border='0' align='top' /> $text";
+        $$alt_clabel = "<img src='$LJ::IMGPREFIX/sponcomm.gif?v=3687' border='0' align='top' /> $text";
         my $text2 = LJ::Lang::ml('ljcom.userinfo.comms.partner');
-        $$alt2_clabel = "<img src='$LJ::IMGPREFIX/partnercomm.gif' border='0' align='top' /> $text2";
+        $$alt2_clabel = "<img src='$LJ::IMGPREFIX/partnercomm.gif?v=6608' border='0' align='top' /> $text2";
     } else { # icons only
         my $text = "Sponsored Communities";
-        $$alt_clabel = "<img src='$LJ::IMGPREFIX/sponcomm.gif' title='$text' alt='$text' border='0' align='top' />";
+        $$alt_clabel = "<img src='$LJ::IMGPREFIX/sponcomm.gif?v=3687' title='$text' alt='$text' border='0' align='top' />";
         my $text2 = "Partner Communities";
-        $$alt2_clabel = "<img src='$LJ::IMGPREFIX/partnercomm.gif' title='$text2' alt='$text2' border='0' align='top' />";
+        $$alt2_clabel = "<img src='$LJ::IMGPREFIX/partnercomm.gif?v=6608' title='$text2' alt='$text2' border='0' align='top' />";
     }
 });
 
@@ -174,7 +174,7 @@
     my $r = $o->{'ret'};
     my $u = $o->{'u'};
     if (LJ::get_cap($u, "paid")) {
-        $$r .= "<a href='$LJ::SITEROOT/paidaccounts/'><img src='$LJ::IMGPREFIX/talk/md10_thumbup.gif' width='25' height='19' alt='$BML::ML{'ljcom.userinfo.paiduser'}' style='vertical-align: middle; border: 0;' /></a>";
+        $$r .= "<a href='$LJ::SITEROOT/paidaccounts/'><img src='$LJ::IMGPREFIX/talk/md10_thumbup.gif?v=6803' width='25' height='19' alt='$BML::ML{'ljcom.userinfo.paiduser'}' style='vertical-align: middle; border: 0;' /></a>";
     }
     $$r .= "<div style='font-size: .8em; padding-top: 3px'>" .
            "<a href='$LJ::SITEROOT/inbox/compose.bml?user=" .
@@ -198,7 +198,7 @@
     my $perm = $u->in_class('perm');
 
     $$r .= "<p class='user_details_bottom right'>";
-    $$r .= "<img src='$LJ::IMGPREFIX/paid.gif' align='absmiddle' /> " if $paid;
+    $$r .= "<img src='$LJ::IMGPREFIX/paid.gif?v=8866' align='absmiddle' /> " if $paid;
 
     if ($remote && $paid && !$perm && $remote->can_manage($u)) {
         my $dbr = LJ::get_db_reader();
@@ -240,7 +240,7 @@
     if (@gifts) {
         if ($with_header) {
             $$r .= "<div class='section$extra_section_class'><span class='expandcollapse on' id='vgifts_header'>";
-            $$r .= "<img id='vgifts_arrow' src='$LJ::IMGPREFIX/profile_icons/arrow-down.gif' align='absmiddle' /> " . LJ::Lang::ml('ljcom.userinfo.vgifts.header');
+            $$r .= "<img id='vgifts_arrow' src='$LJ::IMGPREFIX/profile_icons/arrow-down.gif?v=14408' align='absmiddle' /> " . LJ::Lang::ml('ljcom.userinfo.vgifts.header');
             $$r .= "</span> <span class='section_link'>[<a href='$LJ::SITEROOT/manage/vgift.bml?u=" . $u->user . "'>" . LJ::Lang::ml('ljcom.userinfo.vgifts.viewall') . "</a>]</span></div>";
             $$r .= "\n<div class='section_body' id='vgifts_body'>";
 			$$r .= "\n<ul class='b-vgift-list'>";
@@ -282,7 +282,7 @@
         my $ulink = $u->journal_base;
         if ($with_header) {
             $$r .= "<div class='section$extra_section_class'><span class='expandcollapse on' id='wishes_header'>";
-            $$r .= "<img id='wishes_arrow' src='$LJ::IMGPREFIX/profile_icons/arrow-down.gif' align='absmiddle' /> " . LJ::Lang::ml('ljcom.userinfo.wishes.header');
+            $$r .= "<img id='wishes_arrow' src='$LJ::IMGPREFIX/profile_icons/arrow-down.gif?v=14408' align='absmiddle' /> " . LJ::Lang::ml('ljcom.userinfo.wishes.header');
             $$r .= "</span> <span class='section_link'>[<a href='$ulink/wishlist'>" . LJ::Lang::ml('ljcom.userinfo.wishes.viewall') . "</a>]</span></div>";
             $$r .= "\n<div class='section_body' id='wishes_body'>";
 			$$r .= "\n<div class='b-wishes-profile'><ul class='b-wishes-list' id='wishes_list'>";
@@ -319,7 +319,7 @@
     my @gifts = LJ::VGift->all_gifts($u);
     my $count = scalar @gifts;
 
-    $$r .= "<img src='$LJ::IMGPREFIX/profile_icons/vgifts.gif' class='icon' /> <a href='$LJ::SITEROOT/manage/vgift.bml?u=$u->{user}'>Virtual Gifts</a> ($count)";
+    $$r .= "<img src='$LJ::IMGPREFIX/profile_icons/vgifts.gif?v=6648' class='icon' /> <a href='$LJ::SITEROOT/manage/vgift.bml?u=$u->{user}'>Virtual Gifts</a> ($count)";
     $$r .= " <a href='$LJ::SITEROOT/shop/vgift.bml'>Send v-gift</a>" if ($u->is_person);
     $$r .= "<br />\n";
     return
@@ -350,7 +350,7 @@
     if ($remote && $u->{user} ne $remote->{user} && # Logged in and not looking at themself
         ($u->{journaltype} eq 'P' || $u->{journaltype} eq 'C')) { # Personal or community
         my $alt = LJ::Lang::ml('/userinfo.bml.label.givegift');
-        $linkele[0] = "<a href='$LJ::SITEROOT/shop/view.bml?item=paidaccount&gift=1&for=$u->{'user'}'><img align='middle' hspace='2' vspace='2' src='$LJ::IMGPREFIX/btn_gift.gif' width='22' height='20' alt='$alt' title='$alt' border='0' /></a>";
+        $linkele[0] = "<a href='$LJ::SITEROOT/shop/view.bml?item=paidaccount&gift=1&for=$u->{'user'}'><img align='middle' hspace='2' vspace='2' src='$LJ::IMGPREFIX/btn_gift.gif?v=1690' width='22' height='20' alt='$alt' title='$alt' border='0' /></a>";
     }
     return @linkele;
 });
@@ -374,7 +374,7 @@
                 or $rcpt_disable_vgifts_value eq "non-friends" and not $u->is_friend($remote)) {
             $li_title = LJ::Lang::ml('ljcom.userinfo.optionlinks.sendvgift.title.self') if $u->equals($remote);
             $li_title = LJ::Lang::ml('ljcom.userinfo.optionlinks.sendvgift.title.comm') if $u->is_community;
-            $ret .= "<li class='profile_sendvgift' title=\"$li_title\"><a href='$url'><img src='$LJ::IMGPREFIX/profile_icons/send-gift.gif' />$text</a></li>";
+            $ret .= "<li class='profile_sendvgift' title=\"$li_title\"><a href='$url'><img src='$LJ::IMGPREFIX/profile_icons/send-gift.gif?v=6903' />$text</a></li>";
         } else {
             if ($rcpt_disable_vgifts_value ne "anon") {
                 $li_title = $u->is_community ? LJ::Lang::ml('ljcom.userinfo.optionlinks.sendvgift.title.comm.disabled') : LJ::Lang::ml('ljcom.userinfo.optionlinks.sendvgift.title.user.disabled');
@@ -382,7 +382,7 @@
             } else {
                 $li_title = LJ::Lang::ml('ljcom.userinfo.optionlinks.sendvgift.title.loggedout');
             }
-            $ret .= "<li class='profile_sendvgift_disabled' title=\"$li_title\"><img src='$LJ::IMGPREFIX/profile_icons/send-gift-disabled.gif' />$text</li>";
+            $ret .= "<li class='profile_sendvgift_disabled' title=\"$li_title\"><img src='$LJ::IMGPREFIX/profile_icons/send-gift-disabled.gif?v=6903' />$text</li>";
         }
     }
 
@@ -391,7 +391,7 @@
     #    my $url = "$LJ::SITEROOT/abuse/bots.bml?user=" . $u->user;
     #    my $text = BML::ml('ljcom.userinfo.optionlinks.report_bot');
     #    my $li_title = BML::ml('ljcom.userinfo.optionlinks.report_bot.title', { username => $u->user });
-    #    $ret .= "<li class='profile_botuser' title=\"$li_title\"><a href='$url'><img src='$LJ::IMGPREFIX/profile_icons/report-bot.gif' />$text</a></li>";
+    #    $ret .= "<li class='profile_botuser' title=\"$li_title\"><a href='$url'><img src='$LJ::IMGPREFIX/profile_icons/report-bot.gif?v=7149' />$text</a></li>";
     #}
 
     return $ret;
@@ -409,7 +409,7 @@
         my $perm = $u->in_class('perm');
 
         #$ret .= "<p class='account_level'>";
-        $ret .= "<img src='$LJ::IMGPREFIX/profile_icons/paidstar14x14.gif' align='absmiddle' alt='' /> " if $paid;
+        $ret .= "<img src='$LJ::IMGPREFIX/profile_icons/paidstar14x14.gif?v=6708' align='absmiddle' alt='' /> " if $paid;
 
         if ($remote && $paid && !$perm && $remote->can_manage($u)) {
             my $dbr = LJ::get_db_reader();
@@ -454,7 +454,7 @@
         $ret .= qq{
             <tr class='im_lj'>
                 <td class='im_icon'>
-                    <img src='$LJ::IMGPREFIX/facebook-profile.gif' alt='' />
+                    <img src='$LJ::IMGPREFIX/facebook-profile.gif?v=17172' alt='' />
                 </td>
                 <td colspan="2"><a href="$fb_link">$fb_name</a></td>
             </tr>
@@ -468,7 +468,7 @@
         $ret .= qq{
             <tr class='im_lj'>
                 <td class='im_icon'>
-                    <img src='$LJ::IMGPREFIX/twitter-profile.gif?v=2' alt='' />
+                    <img src='$LJ::IMGPREFIX/twitter-profile.gif?v=18111' alt='' />
                 </td>
                 <td colspan="2"><a href="$tw_link">$tw_name</a></td>
             </tr>
@@ -481,7 +481,7 @@
         $ret .= qq{
             <tr class='im_lj'>
                 <td class='im_icon'>
-                    <img src='$LJ::IMGPREFIX/openid-profile.gif' alt='' />
+                    <img src='$LJ::IMGPREFIX/openid-profile.gif?v=5044' alt='' />
                 </td>
                 <td colspan="2">$openid</td>
             </tr>
@@ -497,7 +497,7 @@
         $ret .= qq{
             <tr class='im_lj'>
                 <td class='im_icon'>
-                    <img src='$LJ::IMGPREFIX/vkontakte-profile.gif?v=2' alt='' />
+                    <img src='$LJ::IMGPREFIX/vkontakte-profile.gif?v=10284' alt='' />
                 </td>
                 <td colspan="2"><a href="$vk_link">$vk_name</a></td>
             </tr>
@@ -512,15 +512,15 @@
         if ($u->can_show_onlinestatus($remote)) {
             if ($u->jabber_is_online) {
                 my $jabon = LJ::Lang::ml('ljcom.userinfo.im.jabber.status.on', { jabbertitle => $jab_title });
-                $online = "<img src='$LJ::IMGPREFIX/profile_icons/jabber.gif' alt=\"$jabon\" title=\"$jabon\" align='absmiddle' />";
+                $online = "<img src='$LJ::IMGPREFIX/profile_icons/jabber.gif?v=14273' alt=\"$jabon\" title=\"$jabon\" align='absmiddle' />";
             } else {
                 my $jaboff = LJ::Lang::ml('ljcom.userinfo.im.jabber.status.off', { jabbertitle => $jab_title });
-                $online = "<img src='$LJ::IMGPREFIX/profile_icons/jabber-off.gif' alt=\"$jaboff\" title=\"$jaboff\" align='absmiddle' />";
+                $online = "<img src='$LJ::IMGPREFIX/profile_icons/jabber-off.gif?v=14273' alt=\"$jaboff\" title=\"$jaboff\" align='absmiddle' />";
             }
         }
 
         my $ljtalk = $mangleaddress ? $mangleaddress->($u->ljtalk_id) : $u->ljtalk_id;
-        $ljtalk = "<tr class='im_lj'><td class='im_icon'><a href='$jab_link'><img src='$LJ::IMGPREFIX/profile_icons/ljtalk.gif' alt='$jab_title' title='$jab_title' /></a></td><td>$ljtalk</td><td class='im_status'>$online</td></tr>\n";
+        $ljtalk = "<tr class='im_lj'><td class='im_icon'><a href='$jab_link'><img src='$LJ::IMGPREFIX/profile_icons/ljtalk.gif?v=6648' alt='$jab_title' title='$jab_title' /></a></td><td>$ljtalk</td><td class='im_status'>$online</td></tr>\n";
 
         $ret .= $ljtalk;
     }
@@ -567,7 +567,7 @@
     if ($u->prop('facebook_access_token')) {
         my $facebook_name = $u->prop('facebook_name');
         $ret .= qq{
-            <img src="$LJ::IMGPREFIX/facebook-profile.gif">
+            <img src="$LJ::IMGPREFIX/facebook-profile.gif?v=17172">
             <strong>$facebook_name</strong>
         }
     } else {
@@ -580,7 +580,7 @@
     if ($u->prop('twitter_access_token')) {
         my $tw_name = $u->prop('twitter_name');
         $ret .= qq{
-            <img src="$LJ::IMGPREFIX/twitter-profile.gif?v=2" alt='' />
+            <img src="$LJ::IMGPREFIX/twitter-profile.gif?v=18111" alt='' />
             <strong>$tw_name</strong>
         }
     } else {
@@ -604,7 +604,7 @@
         if ($u->prop('vkontakte_access_token')) {
             my $vk_name = $u->prop('vkontakte_name');
             $ret .= qq{
-                <img src="$LJ::IMGPREFIX/vkontakte-profile.gif?v=2" alt='' />
+                <img src="$LJ::IMGPREFIX/vkontakte-profile.gif?v=10284" alt='' />
                 <strong>$vk_name</strong>
             }
         } else {

Modified: trunk/cgi-bin/LJ/Hooks/Userpics.pm
===================================================================
--- trunk/cgi-bin/LJ/Hooks/Userpics.pm	2012-02-08 16:33:58 UTC (rev 11448)
+++ trunk/cgi-bin/LJ/Hooks/Userpics.pm	2012-02-08 16:39:17 UTC (rev 11449)
@@ -34,7 +34,7 @@
         $widthheight = " width='$width' height='$height'";
     }
 
-    return "<img src='$LJ::STATPREFIX/horizon/nouserpic.png'$widthheight class='userpic-img' alt='' />";
+    return "<img src='$LJ::STATPREFIX/horizon/nouserpic.png?v=2621'$widthheight class='userpic-img' alt='' />";
 });
 
 1;

Tags: ljcom, pm, vad, vadvs
Subscribe

  • Post a new comment

    Error

    Anonymous comments are disabled in this journal

    default userpic

    Your reply will be screened

    Your IP address will be recorded 

  • 0 comments