Update of /cvsroot/phpwiki/phpwiki/lib
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv24190
Modified Files:
CachedMarkup.php
Log Message:
Valid HTML code: we need a div, it might contain a table
Index: CachedMarkup.php
===================================================================
RCS file: /cvsroot/phpwiki/phpwiki/lib/CachedMarkup.php,v
retrieving revision 1.60
retrieving revision 1.61
diff -u -2 -b -p -d -r1.60 -r1.61
--- CachedMarkup.php 15 Sep 2007 12:28:46 -0000 1.60
+++ CachedMarkup.php 30 Jan 2008 19:08:59 -0000 1.61
@@ -774,5 +774,6 @@ class Cached_PluginInvocation extends Ca
if (isset($this->_tightenable)) {
if ($this->_tightenable == 3) {
- $span = HTML::span(array('class' => 'plugin'), $xml);
+ // We need a div here, it might contain a table
+ $span = HTML::div(array('class' => 'plugin'), $xml);
if (!empty($id))
$span->setAttr('id', $id);
@@ -812,4 +813,7 @@ class Cached_PluginInvocation extends Ca
// $Log$
+// Revision 1.61 2008/01/30 19:08:59 vargenau
+// Valid HTML code: we need a div, it might contain a table
+//
// Revision 1.60 2007/09/15 12:28:46 rurban
// Improve multi-page format handling: abstract _DumpHtmlToDir. get rid of non-external pdf, non-global VALID_LINKS
|