From: <var...@us...> - 2008-11-07 14:20:43
|
Revision: 6344 http://phpwiki.svn.sourceforge.net/phpwiki/?rev=6344&view=rev Author: vargenau Date: 2008-11-07 14:20:31 +0000 (Fri, 07 Nov 2008) Log Message: ----------- No div needed Modified Paths: -------------- trunk/lib/plugin/Transclude.php Modified: trunk/lib/plugin/Transclude.php =================================================================== --- trunk/lib/plugin/Transclude.php 2008-11-07 14:12:27 UTC (rev 6343) +++ trunk/lib/plugin/Transclude.php 2008-11-07 14:20:31 UTC (rev 6344) @@ -110,7 +110,7 @@ $noframe_msg = HTML::div(array('class' => 'transclusion'), HTML::p(array(), $noframe_msg)); - $iframe = HTML::div(HTML::iframe($params, $noframe_msg)); + $iframe = HTML::iframe($params, $noframe_msg); /* This doesn't work very well... maybe because CSS screws up NS4 anyway... $iframe = new HtmlElement('ilayer', array('src' => $src), $iframe); This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |