Index: trunk/phase3/includes/Xml.php |
— | — | @@ -692,9 +692,9 @@ |
693 | 693 | |
694 | 694 | /** |
695 | 695 | * Build a table of data |
696 | | - * @param array $rows An array of arrays of strings, each to be a row in a table |
697 | | - * @param array $attribs Attributes to apply to the table tag [optional] |
698 | | - * @param array $headers An array of strings to use as table headers [optional] |
| 696 | + * @param $rows An array of arrays of strings, each to be a row in a table |
| 697 | + * @param $attribs An array of attributes to apply to the table tag [optional] |
| 698 | + * @param $headers An array of strings to use as table headers [optional] |
699 | 699 | * @return string |
700 | 700 | */ |
701 | 701 | public static function buildTable( $rows, $attribs = array(), $headers = null ) { |
— | — | @@ -717,7 +717,7 @@ |
718 | 718 | |
719 | 719 | /** |
720 | 720 | * Build a row for a table |
721 | | - * @param array $cells An array of strings to put in <td> |
| 721 | + * @param $cells An array of strings to put in <td> |
722 | 722 | * @return string |
723 | 723 | */ |
724 | 724 | public static function buildTableRow( $attribs, $cells ) { |