aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPaul S. Owen <psotfx@users.sourceforge.net>2001-11-18 14:40:58 +0000
committerPaul S. Owen <psotfx@users.sourceforge.net>2001-11-18 14:40:58 +0000
commita1f00aa8893d52a364505131bd5e9d894d360adb (patch)
tree5f56cf93bdceb3b323b715bed725b49484ab19d7
parent939e9855710b3b00604398d547d756fcaec1e2c5 (diff)
downloadforums-a1f00aa8893d52a364505131bd5e9d894d360adb.tar
forums-a1f00aa8893d52a364505131bd5e9d894d360adb.tar.gz
forums-a1f00aa8893d52a364505131bd5e9d894d360adb.tar.bz2
forums-a1f00aa8893d52a364505131bd5e9d894d360adb.tar.xz
forums-a1f00aa8893d52a364505131bd5e9d894d360adb.zip
More lang cleanups
git-svn-id: file:///svn/phpbb/trunk@1356 89ea8834-ac86-4346-8a33-228a782c2dd0
-rw-r--r--phpBB/profile.php2
-rw-r--r--phpBB/viewtopic.php2
2 files changed, 2 insertions, 2 deletions
diff --git a/phpBB/profile.php b/phpBB/profile.php
index e18964143c..8bd216ada8 100644
--- a/phpBB/profile.php
+++ b/phpBB/profile.php
@@ -401,7 +401,7 @@ if( isset($HTTP_GET_VARS['mode']) || isset($HTTP_POST_VARS['mode']) )
"L_AIM" => $lang['AIM'],
"L_MESSENGER" => $lang['MSNM'],
"L_WEBSITE" => $lang['Website'],
- "L_LOCATION" => $lang['From'],
+ "L_LOCATION" => $lang['Location'],
"L_OCCUPATION" => $lang['Occupation'],
"L_INTERESTS" => $lang['Interests'],
diff --git a/phpBB/viewtopic.php b/phpBB/viewtopic.php
index a16efadb0e..33c82bd544 100644
--- a/phpBB/viewtopic.php
+++ b/phpBB/viewtopic.php
@@ -698,7 +698,7 @@ for($i = 0; $i < $total_posts; $i++)
$poster_posts = ($postrow[$i]['user_id'] != ANONYMOUS) ? $lang['Posts'] . ": " . $postrow[$i]['user_posts'] : "";
- $poster_from = ($postrow[$i]['user_from'] && $postrow[$i]['user_id'] != ANONYMOUS) ? $lang['From'] . ": " . $postrow[$i]['user_from'] : "";
+ $poster_from = ($postrow[$i]['user_from'] && $postrow[$i]['user_id'] != ANONYMOUS) ? $lang['Location'] . ": " . $postrow[$i]['user_from'] : "";
$poster_joined = ($postrow[$i]['user_id'] != ANONYMOUS) ? $lang['Joined'] . ": " . create_date($board_config['default_dateformat'], $postrow[$i]['user_regdate'], $board_config['board_timezone']) : "";