jproulx ([personal profile] jproulx) wrote in [site community profile] changelog2009-03-03 01:03 am

[dw-free] Fix an unclosed div. Not sure if this is the exact structure, but it fixes things locally.

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

Fix an unclosed div. Not sure if this is the exact structure, but it fixes
things locally.

Files modified:
  • htdocs/userinfo.bml
--------------------------------------------------------------------------------
diff -r 0331fcf0a720 -r 20f8b0f4a907 htdocs/userinfo.bml
--- a/htdocs/userinfo.bml	Tue Mar 03 00:50:00 2009 +0000
+++ b/htdocs/userinfo.bml	Mon Mar 02 17:02:07 2009 -0800
@@ -384,7 +384,7 @@ body<=
     # other statistics
     $ret .= q{ <div class='details_links'><p> };
     $ret .= join( ', ', ( $profile->entry_stats, $profile->tag_stats, $profile->memory_stats, $profile->userpic_stats ) );
-    $ret .= q{ </p></div></div></div> };
+    $ret .= q{ </p></div></div></div></div> };
 
 ################################################################################
 ##### BASIC INFORMATION
--------------------------------------------------------------------------------