Changeset 457:e2c2754452b1 for plugins/aboutConfig
- Timestamp:
- 06/30/11 19:38:28 (14 years ago)
- Branch:
- formfilters
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
plugins/aboutConfig/index.php
r220 r457 77 77 '<tr>'. 78 78 '<td><label for="s_'.$id.'">'.sprintf($slabel,html::escapeHTML($id)).'</label></td>'. 79 '<t d>'.$field.'</td>'.79 '<th scope="row">'.$field.'</th>'. 80 80 '<td>'.$s['type'].'</td>'. 81 81 '<td>'.html::escapeHTML($s['label']).'</td>'. … … 107 107 <form action="plugin.php" method="post"> 108 108 <table> 109 <caption><?php echo __('Local blog settings list'); ?></caption> 110 <thead> 109 111 <tr> 110 <th class="nowrap">Setting ID</th>111 <th ><?php echo __('Value'); ?></th>112 <th ><?php echo __('Type'); ?></th>113 <th class="maximal"><?php echo __('Description'); ?></th>112 <th scope="col" class="nowrap">Setting ID</th> 113 <th scope="col"><?php echo __('Value'); ?></th> 114 <th scope="col"><?php echo __('Type'); ?></th> 115 <th scope="col" class="maximal"><?php echo __('Description'); ?></th> 114 116 </tr> 117 </thead> 118 <tbody> 115 119 <?php 116 120 $settings = array(); … … 127 131 { 128 132 ksort($s); 129 echo '<tr><t d colspan="4" class="ns-name">namespace: <strong>'.$ns.'</strong></td></tr>';133 echo '<tr><th scope="row" colspan="4" class="ns-name">namespace: <strong>'.$ns.'</strong></th></tr>'; 130 134 131 135 foreach ($s as $k => $v) … … 135 139 } 136 140 ?> 141 </tbody> 137 142 </table> 138 143 <p><input type="submit" value="<?php echo __('Save'); ?>" /> … … 145 150 <form action="plugin.php" method="post"> 146 151 <table> 152 <caption><?php echo __('Global blog settings list'); ?></caption> 153 <thead> 147 154 <tr> 148 <th class="nowrap">Setting ID</th>149 <th ><?php echo __('Value'); ?></th>150 <th ><?php echo __('Type'); ?></th>151 <th class="maximal"><?php echo __('Description'); ?></th>155 <th scope="col" class="nowrap">Setting ID</th> 156 <th scope="col"><?php echo __('Value'); ?></th> 157 <th scope="col"><?php echo __('Type'); ?></th> 158 <th scope="col" class="maximal"><?php echo __('Description'); ?></th> 152 159 </tr> 160 </thead> 161 <tbody> 153 162 <?php 154 163 $settings = array(); … … 165 174 { 166 175 ksort($s); 167 echo '<tr><t d colspan="4" class="ns-name">namespace: <strong>'.$ns.'</strong></td></tr>';176 echo '<tr><th scope="row" colspan="4" class="ns-name">namespace: <strong>'.$ns.'</strong></th></tr>'; 168 177 169 178 foreach ($s as $k => $v) … … 173 182 } 174 183 ?> 184 </tbody> 175 185 </table> 176 186 <p><input type="submit" value="<?php echo __('Save'); ?>" />
Note: See TracChangeset
for help on using the changeset viewer.