From: <var...@us...> - 2009-03-22 11:31:56
|
Revision: 6683 http://phpwiki.svn.sourceforge.net/phpwiki/?rev=6683&view=rev Author: vargenau Date: 2009-03-22 11:31:45 +0000 (Sun, 22 Mar 2009) Log Message: ----------- Valid HTML code Modified Paths: -------------- trunk/lib/PagePerm.php Modified: trunk/lib/PagePerm.php =================================================================== --- trunk/lib/PagePerm.php 2009-03-22 08:53:08 UTC (rev 6682) +++ trunk/lib/PagePerm.php 2009-03-22 11:31:45 UTC (rev 6683) @@ -558,7 +558,7 @@ function asTable($type) { $table = HTML::table(); foreach ($this->perm as $access => $perms) { - $td = HTML::table(array('class' => 'cal','valign' => 'top')); + $td = HTML::table(array('class' => 'cal')); foreach ($perms as $group => $bool) { $td->pushContent(HTML::tr(HTML::td(array('align'=>'right'),$group), HTML::td($bool ? '[X]' : '[ ]'))); @@ -601,7 +601,7 @@ $addsrc = $WikiTheme->_findData('images/add.png'); $nbsp = HTML::raw(' '); foreach ($this->perm as $access => $groups) { - //$permlist = HTML::table(array('class' => 'cal','valign' => 'top')); + //$permlist = HTML::table(array('class' => 'cal')); $first_only = true; $newperm = HTML::input(array('type' => 'checkbox', 'name' => "acl[_new_perm][$access]", This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |