2014-05-17 Junichi Satoh <junichi@rworks.jp>

* include/functions_html.php: Fixed the PHP warning.



git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@9946 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
This commit is contained in:
jsatoh 2014-05-17 10:54:39 +00:00
parent 8fbde92bf5
commit 91f715bee3
2 changed files with 5 additions and 0 deletions

View File

@ -1,3 +1,7 @@
2014-05-17 Junichi Satoh <junichi@rworks.jp>
* include/functions_html.php: Fixed the PHP warning.
2014-05-16 Junichi Satoh <junichi@rworks.jp>
* include/languages/Makefile: Removed unavailable language files

View File

@ -1405,6 +1405,7 @@ function html_print_table (&$table, $return = false) {
if (isset ($table->headstyle[$key])) {
$headStyle = ' style = "' . $table->headstyle[$key] . '" ';
}
else $headStyle = '';
$output .= '<th class="'.$table->headclass[$key].'" ' . $headColspan . $headStyle . ' scope="col">'. $heading .'</th>';
}