mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-28 14:18:52 +00:00
Slight admin rank bug (would not display-broken image)
git-svn-id: file:///svn/phpbb/trunk@1596 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
parent
a2a7edc761
commit
f217a67aed
2 changed files with 3 additions and 3 deletions
|
@ -108,7 +108,7 @@ if( $mode != "" )
|
|||
"NOT_SPECIAL_RANK" => $rank_is_not_special,
|
||||
"MINIMUM" => ( $rank_is_special ) ? "" : $rank_info['rank_min'],
|
||||
"IMAGE" => ( $rank_info['rank_image'] != "" ) ? $rank_info['rank_image'] : "",
|
||||
"IMAGE_DISPLAY" => ( $rank_info['rank_image'] != "" ) ? '<img src="' . $rank_info['rank_image'] . '" />' : "",
|
||||
"IMAGE_DISPLAY" => ( $rank_info['rank_image'] != "" ) ? '<img src="../' . $rank_info['rank_image'] . '" />' : "",
|
||||
|
||||
"L_RANKS_TITLE" => $lang['Ranks_title'],
|
||||
"L_RANKS_TEXT" => $lang['Ranks_explain'],
|
||||
|
@ -352,4 +352,4 @@ $template->pparse("body");
|
|||
|
||||
include('page_footer_admin.'.$phpEx);
|
||||
|
||||
?>
|
||||
?>
|
||||
|
|
|
@ -505,7 +505,7 @@ $lang['Rank_title'] = "Rank Title";
|
|||
$lang['Rank_special'] = "Set as Special Rank";
|
||||
$lang['Rank_minimum'] = "Minimum Posts";
|
||||
$lang['Rank_maximum'] = "Maximum Posts";
|
||||
$lang['Rank_image'] = "Rank Image";
|
||||
$lang['Rank_image'] = "Rank Image (Relative to phpBB2 root path)";
|
||||
$lang['Rank_image_explain'] = "Use this to define a small image associated with the rank";
|
||||
|
||||
$lang['Must_select_rank'] = "You must select a rank";
|
||||
|
|
Loading…
Add table
Reference in a new issue