mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-28 06:08:52 +00:00
Minor change to message output when no posts exist
git-svn-id: file:///svn/phpbb/trunk@1233 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
parent
2d11805844
commit
390928f4ee
2 changed files with 4 additions and 12 deletions
|
@ -240,6 +240,7 @@ $lang['Display_posts'] = "Display posts from previous";
|
|||
$lang['All_Posts'] = "All Posts";
|
||||
$lang['Newest_First'] = "Newest First";
|
||||
$lang['Oldest_First'] = "Oldest First";
|
||||
$lang['No_posts_topic'] = "No posts exist for this topic";
|
||||
|
||||
$lang['Return_to_top'] = "Return to top";
|
||||
|
||||
|
@ -1079,16 +1080,7 @@ $lang['ODBC_Instructs'] = "Someone please write some odbc instructions in the \$
|
|||
$lang['Table_Prefix'] = "Prefix for tables in database";
|
||||
$lang['Unwriteable_config'] = "Your config file is unwriteable at present. A copy of the config file will be downloaded to your when you click the button below. You should upload this file to the same directory as phpBB 2. Once this is done you should log in using the administrator name and password you provided on the previous form and visit the admin control centre (a link will appear at the bottom of each screen once logged in) to check the general configuration. Thank you for choosing phpBB 2.";
|
||||
$lang['Download_config'] = "Download Config";
|
||||
$lang['ftp_choose'] = "Choose Download Method";
|
||||
$lang['Attempt_ftp'] = "Attempt to ftp config file into place:";
|
||||
$lang['Send_file'] = "Just send the file to me and I'll ftp it manually:";
|
||||
$lang['ftp_option'] = "<br />Since the ftp extensions are loaded in php you may will also be given the option of first trying to automatically ftp the config file into place.";
|
||||
$lang['ftp_instructs'] = "You have chosen to attempt to ftp the file to your phpBB installation automagically. Please enter the information below to facilitate this process. Note that the FTP Path should be the exact path via ftp to your phpBB2 installation as if you were ftping to it.";
|
||||
$lang['ftp_path'] = "FTP Path to phpBB2:";
|
||||
$lang['ftp_username'] = "Your FTP Username:";
|
||||
$lang['ftp_password'] = "Your FTP Password:";
|
||||
$lang['Transfer_config'] = "Start Transfer";
|
||||
$lang['ftp_info'] = "Enter Your FTP Information";
|
||||
|
||||
|
||||
//
|
||||
// Ranks admin
|
||||
|
@ -1127,4 +1119,4 @@ $lang['no_disallowed'] = "No Disallowed Usernames";
|
|||
// That's all Folks!
|
||||
// -------------------------------------------------
|
||||
|
||||
?>
|
||||
?>
|
|
@ -398,7 +398,7 @@ if(!$result = $db->sql_query($sql))
|
|||
|
||||
if(!$total_posts = $db->sql_numrows($result))
|
||||
{
|
||||
message_die(GENERAL_ERROR, "There don't appear to be any posts for this topic.", "", __LINE__, __FILE__, $sql);
|
||||
message_die(GENERAL_MESSAGE, $lang['No_posts_topic']);
|
||||
}
|
||||
$postrow = $db->sql_fetchrowset($result);
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue