diff options
author | Paul S. Owen <psotfx@users.sourceforge.net> | 2003-06-03 21:40:02 +0000 |
---|---|---|
committer | Paul S. Owen <psotfx@users.sourceforge.net> | 2003-06-03 21:40:02 +0000 |
commit | 67bbcf5c49ba73f05477bc5bb5864e3fa40b5fd8 (patch) | |
tree | b29f9c5c3b0cd34f2cc085a692336f5f2817415b /phpBB/adm/admin_icons.php | |
parent | 7dc2a615ee25b78d8ea3edc329183bd1c19c9950 (diff) | |
download | forums-67bbcf5c49ba73f05477bc5bb5864e3fa40b5fd8.tar forums-67bbcf5c49ba73f05477bc5bb5864e3fa40b5fd8.tar.gz forums-67bbcf5c49ba73f05477bc5bb5864e3fa40b5fd8.tar.bz2 forums-67bbcf5c49ba73f05477bc5bb5864e3fa40b5fd8.tar.xz forums-67bbcf5c49ba73f05477bc5bb5864e3fa40b5fd8.zip |
Default rank images directory
git-svn-id: file:///svn/phpbb/trunk@4076 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/adm/admin_icons.php')
-rw-r--r-- | phpBB/adm/admin_icons.php | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/phpBB/adm/admin_icons.php b/phpBB/adm/admin_icons.php index 4376f6c640..1555910972 100644 --- a/phpBB/adm/admin_icons.php +++ b/phpBB/adm/admin_icons.php @@ -218,11 +218,11 @@ function update_image_dimensions() <form method="post" action="admin_icons.<?php echo $phpEx . $SID . "&mode=$mode&action=" . (($action == 'add') ? 'create' : 'modify'); ?>"><table class="bg" cellspacing="1" cellpadding="4" border="0" align="center"> <tr> - <th class="th" colspan="2"><?php echo $user->lang[$lang . '_CONFIG'] ?></th> + <th colspan="2"><?php echo $user->lang[$lang . '_CONFIG'] ?></th> </tr> <tr> <td class="row1"><?php echo $user->lang[$lang . '_URL'] ?></td> - <td class="row1"><select name="img" onChange="update_image(this.options[selectedIndex].value);"><?php echo $filename_list ?></select> <img src="<?php echo $phpbb_root_path . $img_path . '/' . $edit_img ?>" name="image" border="0" alt="" title="" onload="update_image_dimensions()" /> </td> + <td class="row2"><select name="img" onchange="update_image(this.options[selectedIndex].value);"><?php echo $filename_list ?></select> <img src="<?php echo $phpbb_root_path . $img_path . '/' . $edit_img ?>" name="image" border="0" alt="" title="" onload="update_image_dimensions()" /> </td> </tr> <?php @@ -231,11 +231,11 @@ function update_image_dimensions() ?> <tr> - <td class="row2"><?php echo $user->lang[$lang . '_CODE'] ?></td> + <td class="row1"><?php echo $user->lang[$lang . '_CODE'] ?></td> <td class="row2"><input class="post" type="text" name="code" value="<?php echo (!empty($data['code'])) ? $data['code'] : '' ?>" /></td> </tr> <tr> - <td class="row2"><?php echo $user->lang[$lang . '_EMOTION'] ?></td> + <td class="row1"><?php echo $user->lang[$lang . '_EMOTION'] ?></td> <td class="row2"><input class="post" type="text" name="emotion" value="<?php echo (!empty($data['emoticon'])) ? $data['emoticon'] : '' ?>" /></td> </tr> <?php @@ -245,18 +245,18 @@ function update_image_dimensions() ?> <tr> <td class="row1"><?php echo $user->lang[$lang . '_WIDTH'] ?></td> - <td class="row1"><input class="post" type="text" size="3" name="width" value="<?php echo (!empty($data[$fields .'_width'])) ? $data[$fields .'_width'] : '' ?>" /></td> + <td class="row2"><input class="post" type="text" size="3" name="width" value="<?php echo (!empty($data[$fields .'_width'])) ? $data[$fields .'_width'] : '' ?>" /></td> </tr> <tr> - <td class="row2"><?php echo $user->lang[$lang . '_HEIGHT'] ?></td> + <td class="row1"><?php echo $user->lang[$lang . '_HEIGHT'] ?></td> <td class="row2"><input class="post" type="text" size="3" name="height" value="<?php echo (!empty($data[$fields .'_height'])) ? $data[$fields .'_height'] : '' ?>" /></td> </tr> <tr> <td class="row1"><?php echo $user->lang['DISPLAY_ON_POSTING'] ?></td> - <td class="row1"><input type="checkbox" name="display_on_posting" <?php echo (!empty($data['display_on_posting']) || !isset($data)) ? ' checked="checked"' : '' ?>/></td> + <td class="row2"><input type="checkbox" name="display_on_posting" <?php echo (!empty($data['display_on_posting']) || !isset($data)) ? ' checked="checked"' : '' ?>/></td> </tr> <tr> - <td class="row2"><?php echo $user->lang[$lang . '_ORDER'] ?></td> + <td class="row1"><?php echo $user->lang[$lang . '_ORDER'] ?></td> <td class="row2"><select name="order"><?php echo $order_list ?></select></td> </tr> <tr> |