Revision 1899
Added by Luisehahne over 12 years ago
- bugfix missing td in form layout
| branches/2.8.x/CHANGELOG | ||
|---|---|---|
| 13 | 13 |  | 
| 14 | 14 |  | 
| 15 | 15 |  | 
| 16 | 04 Apr-2013 Build 1899 Dietmar Woellbrink (Luisehahne) | |
| 17 | # bugfix missing td in form layout | |
| 16 | 18 | 03 Apr-2013 Build 1898 Dietmar Woellbrink (Luisehahne) | 
| 17 | 19 | # bugfix missing trailing backtick in output_filter/input.php | 
| 18 | 20 | # bugfix wrong backticks in 'admin/media/upload.php | 
| branches/2.8.x/wb/admin/interface/version.php | ||
|---|---|---|
| 51 | 51 |  | 
| 52 | 52 | // check if defined to avoid errors during installation (redirect to admin panel fails if PHP error/warnings are enabled) | 
| 53 | 53 | if(!defined('VERSION')) define('VERSION', '2.8.3');
 | 
| 54 | if(!defined('REVISION')) define('REVISION', '1898');
 | |
| 54 | if(!defined('REVISION')) define('REVISION', '1899');
 | |
| 55 | 55 | if(!defined('SP')) define('SP', '');
 | 
| branches/2.8.x/wb/modules/form/add.php | ||
|---|---|---|
| 26 | 26 | $database->field_add($table_name, $field_name, $description); | 
| 27 | 27 | } | 
| 28 | 28 |  | 
| 29 | // Insert an extra rows into the database | |
| 30 | $header = '<table class="frm-field_table">'; | |
| 31 | 	$field_loop = '<tr>'.PHP_EOL.'<td class=\"frm-field_title\">{TITLE}{REQUIRED}:</td>'.PHP_EOL.'<td>{FIELD}</td>'.PHP_EOL.'</tr>';
 | |
| 32 | $footer = '<tr>'.PHP_EOL.' | |
| 33 | <td>'.PHP_EOL.' | |
| 34 | <input type=\"submit\" name=\"submit\" value=\"{SUBMIT_FORM}\" />'.PHP_EOL.'
 | |
| 35 | </td>'.PHP_EOL.' | |
| 36 | </tr>'.PHP_EOL.' | |
| 37 | </table>'.PHP_EOL; | |
| 29 | // Insert an extra rows into the database | |
| 30 | $header = '<table class="frm-field_table">'.PHP_EOL | |
| 31 | . ' <tbody>'.PHP_EOL; | |
| 32 | $field_loop = ' <tr>'.PHP_EOL | |
| 33 | 	            . '            <td class="frm-field_title">{TITLE}{REQUIRED}:</td>'.PHP_EOL
 | |
| 34 | 	            . '            <td>{FIELD}</td>'.PHP_EOL
 | |
| 35 | . ' </tr>'; | |
| 36 | $footer = ' <tr>'.PHP_EOL | |
| 37 | . ' <td> </td>'.PHP_EOL | |
| 38 | . ' <td>'.PHP_EOL | |
| 39 | 	            . '                <input type="submit" name="submit" value="{SUBMIT_FORM}" />'.PHP_EOL
 | |
| 40 | . ' </td>'.PHP_EOL | |
| 41 | . ' </tr>'.PHP_EOL | |
| 42 | . ' </tbody>'.PHP_EOL | |
| 43 | . '</table>'.PHP_EOL; | |
| 44 |  | |
| 38 | 45 | $email_to = ''; | 
| 39 | 46 | $email_from = ''; | 
| 40 | 47 | $email_fromname = ''; | 
Also available in: Unified diff