diff options
author | Paul S. Owen <psotfx@users.sourceforge.net> | 2002-01-23 19:08:01 +0000 |
---|---|---|
committer | Paul S. Owen <psotfx@users.sourceforge.net> | 2002-01-23 19:08:01 +0000 |
commit | 84f8c74571fd5857d2c5e9d7326218b60bd7ca09 (patch) | |
tree | 287e944a2a5ba7634fb08816f48c0026fe00e2b7 | |
parent | a016ef8147c09c2f94e75cbce66e6a06f0a81634 (diff) | |
download | forums-84f8c74571fd5857d2c5e9d7326218b60bd7ca09.tar forums-84f8c74571fd5857d2c5e9d7326218b60bd7ca09.tar.gz forums-84f8c74571fd5857d2c5e9d7326218b60bd7ca09.tar.bz2 forums-84f8c74571fd5857d2c5e9d7326218b60bd7ca09.tar.xz forums-84f8c74571fd5857d2c5e9d7326218b60bd7ca09.zip |
Fixes for TH_CLASS 2 & 3 by Tom
git-svn-id: file:///svn/phpbb/trunk@1924 89ea8834-ac86-4346-8a33-228a782c2dd0
-rw-r--r-- | phpBB/admin/admin_styles.php | 4 | ||||
-rwxr-xr-x | phpBB/templates/subSilver/admin/styles_edit_body.tpl | 6 |
2 files changed, 7 insertions, 3 deletions
diff --git a/phpBB/admin/admin_styles.php b/phpBB/admin/admin_styles.php index 46ed49ac5f..4ef5aff21a 100644 --- a/phpBB/admin/admin_styles.php +++ b/phpBB/admin/admin_styles.php @@ -232,6 +232,10 @@ switch( $mode ) $updated_name['th_color3_name'] = $HTTP_POST_VARS['th_color3_name']; $updated['th_class1'] = $HTTP_POST_VARS['th_class1']; $updated_name['th_class1_name'] = $HTTP_POST_VARS['th_class1_name']; + $updated['th_class2'] = $HTTP_POST_VARS['th_class2']; + $updated_name['th_class2_name'] = $HTTP_POST_VARS['th_class2_name']; + $updated['th_class3'] = $HTTP_POST_VARS['th_class3']; + $updated_name['th_class3_name'] = $HTTP_POST_VARS['th_class3_name']; $updated['td_color1'] = $HTTP_POST_VARS['td_color1']; $updated_name['td_color1_name'] = $HTTP_POST_VARS['td_color1_name']; $updated['td_color2'] = $HTTP_POST_VARS['td_color2']; diff --git a/phpBB/templates/subSilver/admin/styles_edit_body.tpl b/phpBB/templates/subSilver/admin/styles_edit_body.tpl index 3f3c73181b..170543216c 100755 --- a/phpBB/templates/subSilver/admin/styles_edit_body.tpl +++ b/phpBB/templates/subSilver/admin/styles_edit_body.tpl @@ -125,9 +125,9 @@ </tr> <tr> - <td class="row1">{L_TD_CLASS3}:</td> - <td class="row2"><input type="text" size="25" maxlength="25" name="th_class3" value="{TD_CLASS3}"></td> - <td class="row2"><input type="text" size="25" maxlength="100" name="th_class3_name" value="{TD_CLASS3_NAME}"> + <td class="row1">{L_TH_CLASS3}:</td> + <td class="row2"><input type="text" size="25" maxlength="25" name="th_class3" value="{TH_CLASS3}"></td> + <td class="row2"><input type="text" size="25" maxlength="100" name="th_class3_name" value="{TH_CLASS3_NAME}"> </tr> <tr> <td class="row1">{L_TD_COLOR1}:</td> |