fu: Close-up of Fu, bringing a scoop of water to her mouth (Default)
fu ([personal profile] fu) wrote in [site community profile] changelog2010-12-16 03:21 pm

[dw-free] fix warning in LJ::EmbedModule::module_iframe_tag

[commit: http://hg.dwscoalition.org/dw-free/rev/20d68b781234]

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

Fix warnings generated by embeds.

Patch by [personal profile] kareila.

Files modified:
  • cgi-bin/LJ/EmbedModule.pm
--------------------------------------------------------------------------------
diff -r 18418924badc -r 20d68b781234 cgi-bin/LJ/EmbedModule.pm
--- a/cgi-bin/LJ/EmbedModule.pm	Thu Dec 16 23:09:15 2010 +0800
+++ b/cgi-bin/LJ/EmbedModule.pm	Thu Dec 16 23:20:44 2010 +0800
@@ -236,7 +236,7 @@ sub module_iframe_tag {
 
     my $journalid = $u->userid;
     $moduleid += 0;
-    my $preview = $opts{preview};
+    my $preview = defined $opts{preview} ? $opts{preview} : '';
 
     # parse the contents of the module and try to come up with a guess at the width and height of the content
     my $content = $class->module_content( moduleid => $moduleid, journalid => $journalid, preview => $preview );
--------------------------------------------------------------------------------