From: <var...@us...> - 2015-04-23 18:39:03
|
Revision: 9693 http://sourceforge.net/p/phpwiki/code/9693 Author: vargenau Date: 2015-04-23 18:39:01 +0000 (Thu, 23 Apr 2015) Log Message: ----------- Add semi-colon Modified Paths: -------------- trunk/configurator.php Modified: trunk/configurator.php =================================================================== --- trunk/configurator.php 2015-04-21 15:58:02 UTC (rev 9692) +++ trunk/configurator.php 2015-04-23 18:39:01 UTC (rev 9693) @@ -177,11 +177,11 @@ } td { - border: thin solid black + border: thin solid black; } tr { - border: none + border: none; } div.hint { @@ -1782,7 +1782,7 @@ global $tdwidth; $i = "<h3>" . $title . "</h3>\n " . nl2p($this->_get_description()) . "\n"; // $i .= "<em>Not editable.</em><br />\n<pre>" . $this->default_value."</pre>"; - return '<tr><td style="width:100%" class="unchangeable-variable-top" colspan="2">' . "\n" . $i . "</td></tr>\n" + return '<tr><td style="width:100%;" class="unchangeable-variable-top" colspan="2">' . "\n" . $i . "</td></tr>\n" . '<tr style="border-top: none;"><td class="unchangeable-variable-left" width="' . $tdwidth . '"> </td>'; } } @@ -2404,7 +2404,7 @@ $id = preg_replace("/\W/", "", $this->config_item_name); $group_name = preg_replace("/\W/", "", $title); $i = '<tr class="header" id="'.$id.'">'."\n"; - $i .= '<td class="part" style="width:100%;background-color:#eee" colspan="2">'."\n"; + $i .= '<td class="part" style="width:100%;background-color:#eee;" colspan="2">'."\n"; $i .= "<h2>" . $title . "</h2>\n " . nl2p($this->_get_description()) . "\n"; $i .= "<p><a href=\"javascript:toggle_group('$id')\" id=\"{$id}_text\">Hide options.</a></p>"; return $i . "</td>\n"; This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |