diff options
Diffstat (limited to 'view/head.tpl')
-rw-r--r-- | view/head.tpl | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/view/head.tpl b/view/head.tpl index a2b55e0b5..ec67455d0 100644 --- a/view/head.tpl +++ b/view/head.tpl @@ -61,6 +61,9 @@ $('.wall-item-outside-wrapper',data).each(function() { var ident = $(this).attr('id'); if($('#' + ident).length == 0) { + $('img',this).each(function() { + $(this).attr('src',$(this).attr('dst')); + }); $('#' + prev).after($(this)); } else { |