aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes/session.php
diff options
context:
space:
mode:
authorLudovic Arnaud <ludovic_arnaud@users.sourceforge.net>2003-02-17 06:20:41 +0000
committerLudovic Arnaud <ludovic_arnaud@users.sourceforge.net>2003-02-17 06:20:41 +0000
commit83c605a6e222c9d64659c3037f4dddca4fe59c05 (patch)
tree3f407d030f3373b059b23fd91593b974b1d35aa0 /phpBB/includes/session.php
parent615e676b0241fab7c4ab92ed5963c2769e34b7e1 (diff)
downloadforums-83c605a6e222c9d64659c3037f4dddca4fe59c05.tar
forums-83c605a6e222c9d64659c3037f4dddca4fe59c05.tar.gz
forums-83c605a6e222c9d64659c3037f4dddca4fe59c05.tar.bz2
forums-83c605a6e222c9d64659c3037f4dddca4fe59c05.tar.xz
forums-83c605a6e222c9d64659c3037f4dddca4fe59c05.zip
More capitalised lang strings, fixed some unset or incorrect variables
git-svn-id: file:///svn/phpbb/trunk@3469 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/includes/session.php')
-rw-r--r--phpBB/includes/session.php4
1 files changed, 3 insertions, 1 deletions
diff --git a/phpBB/includes/session.php b/phpBB/includes/session.php
index d467633abd..de1ef3aaa8 100644
--- a/phpBB/includes/session.php
+++ b/phpBB/includes/session.php
@@ -485,8 +485,10 @@ class user extends session
if (empty($imgs[$img]) || $no_cache)
{
+ $alt = (!empty($this->lang[$alt])) ? $this->lang[$alt] : '';
+
$width = ($width) ? 'width="' . $width . '" ' : '';
- $imgs[$img] = '<img src=' . str_replace('{LANG}', $this->img_lang, $this->theme[$img]) . '" ' . $width . 'alt="' . $this->lang[$alt] . '" title="' . $this->lang[$alt] . '" />';
+ $imgs[$img] = '<img src=' . str_replace('{LANG}', $this->img_lang, $this->theme[$img]) . '" ' . $width . 'alt="' . $alt . '" title="' . $alt . '" />';
}
return $imgs[$img];
}