mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-10 16:35:35 +02:00
Merge branch 'develop-olympus' into develop
* develop-olympus: [ticket/9827] No longer emulate Internet Explorer 7 when using IE9. [ticket/9850] Display upgrade instructions for feature release in acp [ticket/9835] subsilver2: Don't show "To prevent automated ..." when logging in
This commit is contained in:
commit
b60892d200
@ -18,6 +18,12 @@
|
|||||||
</div>
|
</div>
|
||||||
<!-- ENDIF -->
|
<!-- ENDIF -->
|
||||||
|
|
||||||
|
<!-- IF NEXT_FEATURE_VERSION -->
|
||||||
|
<div class="errorbox">
|
||||||
|
<p>{UPGRADE_INSTRUCTIONS}</p>
|
||||||
|
</div>
|
||||||
|
<!-- ENDIF -->
|
||||||
|
|
||||||
<fieldset>
|
<fieldset>
|
||||||
<legend></legend>
|
<legend></legend>
|
||||||
<dl>
|
<dl>
|
||||||
|
@ -51,6 +51,14 @@ class acp_update
|
|||||||
$announcement_url = (strpos($announcement_url, '&') === false) ? str_replace('&', '&', $announcement_url) : $announcement_url;
|
$announcement_url = (strpos($announcement_url, '&') === false) ? str_replace('&', '&', $announcement_url) : $announcement_url;
|
||||||
$update_link = append_sid($phpbb_root_path . 'install/index.' . $phpEx, 'mode=update');
|
$update_link = append_sid($phpbb_root_path . 'install/index.' . $phpEx, 'mode=update');
|
||||||
|
|
||||||
|
// next feature release
|
||||||
|
$next_feature_version = $next_feature_announcement_url = false;
|
||||||
|
if (isset($info[2]) && trim($info[2]) !== '')
|
||||||
|
{
|
||||||
|
$next_feature_version = trim($info[2]);
|
||||||
|
$next_feature_announcement_url = trim($info[3]);
|
||||||
|
}
|
||||||
|
|
||||||
// Determine automatic update...
|
// Determine automatic update...
|
||||||
$sql = 'SELECT config_value
|
$sql = 'SELECT config_value
|
||||||
FROM ' . CONFIG_TABLE . "
|
FROM ' . CONFIG_TABLE . "
|
||||||
@ -74,8 +82,10 @@ class acp_update
|
|||||||
'LATEST_VERSION' => $latest_version,
|
'LATEST_VERSION' => $latest_version,
|
||||||
'CURRENT_VERSION' => $config['version'],
|
'CURRENT_VERSION' => $config['version'],
|
||||||
'AUTO_VERSION' => $version_update_from,
|
'AUTO_VERSION' => $version_update_from,
|
||||||
|
'NEXT_FEATURE_VERSION' => $next_feature_version,
|
||||||
|
|
||||||
'UPDATE_INSTRUCTIONS' => sprintf($user->lang['UPDATE_INSTRUCTIONS'], $announcement_url, $update_link),
|
'UPDATE_INSTRUCTIONS' => sprintf($user->lang['UPDATE_INSTRUCTIONS'], $announcement_url, $update_link),
|
||||||
|
'UPGRADE_INSTRUCTIONS' => $next_feature_version ? $user->lang('UPGRADE_INSTRUCTIONS', $next_feature_version, $next_feature_announcement_url) : false,
|
||||||
));
|
));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -3299,7 +3299,7 @@ function obtain_latest_version_info($force_update = false, $warn_fail = false, $
|
|||||||
$errstr = '';
|
$errstr = '';
|
||||||
$errno = 0;
|
$errno = 0;
|
||||||
|
|
||||||
$info = get_remote_file('www.phpbb.com', '/updatecheck',
|
$info = get_remote_file('version.phpbb.com', '/phpbb',
|
||||||
((defined('PHPBB_QA')) ? '30x_qa.txt' : '30x.txt'), $errstr, $errno);
|
((defined('PHPBB_QA')) ? '30x_qa.txt' : '30x.txt'), $errstr, $errno);
|
||||||
|
|
||||||
if ($info === false)
|
if ($info === false)
|
||||||
|
@ -559,6 +559,7 @@ $lang = array_merge($lang, array(
|
|||||||
'UPDATING_DATA' => 'Updating data',
|
'UPDATING_DATA' => 'Updating data',
|
||||||
'UPDATING_TO_LATEST_STABLE' => 'Updating database to latest stable release',
|
'UPDATING_TO_LATEST_STABLE' => 'Updating database to latest stable release',
|
||||||
'UPDATED_VERSION' => 'Updated version',
|
'UPDATED_VERSION' => 'Updated version',
|
||||||
|
'UPGRADE_INSTRUCTIONS' => 'A new feature release <strong>%1$s</strong> is available. Please read <a href="%2$s" title="%2$s"><strong>the release announcement</strong></a> to learn about what it has to offer, and how to upgrade.',
|
||||||
'UPLOAD_METHOD' => 'Upload method',
|
'UPLOAD_METHOD' => 'Upload method',
|
||||||
|
|
||||||
'UPDATE_DB_SUCCESS' => 'Database update was successful.',
|
'UPDATE_DB_SUCCESS' => 'Database update was successful.',
|
||||||
|
@ -11,7 +11,7 @@
|
|||||||
<meta name="copyright" content="2000, 2002, 2005, 2007 phpBB Group" />
|
<meta name="copyright" content="2000, 2002, 2005, 2007 phpBB Group" />
|
||||||
<meta name="keywords" content="" />
|
<meta name="keywords" content="" />
|
||||||
<meta name="description" content="" />
|
<meta name="description" content="" />
|
||||||
<meta http-equiv="X-UA-Compatible" content="IE=EmulateIE7" />
|
<meta http-equiv="X-UA-Compatible" content="IE=EmulateIE7; IE=EmulateIE9" />
|
||||||
{META}
|
{META}
|
||||||
<title>{SITENAME} • <!-- IF S_IN_MCP -->{L_MCP} • <!-- ELSEIF S_IN_UCP -->{L_UCP} • <!-- ENDIF -->{PAGE_TITLE}</title>
|
<title>{SITENAME} • <!-- IF S_IN_MCP -->{L_MCP} • <!-- ELSEIF S_IN_UCP -->{L_UCP} • <!-- ENDIF -->{PAGE_TITLE}</title>
|
||||||
|
|
||||||
|
@ -1,9 +1,11 @@
|
|||||||
<tr>
|
<tr>
|
||||||
<th colspan="2" valign="middle">{L_CONFIRM_CODE}</th>
|
<th colspan="2" valign="middle">{L_CONFIRM_CODE}</th>
|
||||||
</tr>
|
</tr>
|
||||||
|
<!-- IF S_TYPE == 1 -->
|
||||||
<tr>
|
<tr>
|
||||||
<td class="row3" colspan="2"><span class="gensmall">{L_CONFIRM_EXPLAIN}</span></td>
|
<td class="row3" colspan="2"><span class="gensmall">{L_CONFIRM_EXPLAIN}</span></td>
|
||||||
</tr>
|
</tr>
|
||||||
|
<!-- ENDIF -->
|
||||||
<tr>
|
<tr>
|
||||||
<td class="row1" colspan="2" align="center"><img src="{CONFIRM_IMAGE_LINK}" alt="{L_CONFIRM_CODE}" />
|
<td class="row1" colspan="2" align="center"><img src="{CONFIRM_IMAGE_LINK}" alt="{L_CONFIRM_CODE}" />
|
||||||
<input type="hidden" name="confirm_id" id="confirm_id" value="{CONFIRM_ID}" /></td>
|
<input type="hidden" name="confirm_id" id="confirm_id" value="{CONFIRM_ID}" /></td>
|
||||||
|
@ -11,7 +11,7 @@
|
|||||||
<meta name="copyright" content="2000, 2002, 2005, 2007 phpBB Group" />
|
<meta name="copyright" content="2000, 2002, 2005, 2007 phpBB Group" />
|
||||||
<meta name="keywords" content="" />
|
<meta name="keywords" content="" />
|
||||||
<meta name="description" content="" />
|
<meta name="description" content="" />
|
||||||
<meta http-equiv="X-UA-Compatible" content="IE=EmulateIE7" />
|
<meta http-equiv="X-UA-Compatible" content="IE=EmulateIE7; IE=EmulateIE9" />
|
||||||
{META}
|
{META}
|
||||||
<title>{SITENAME} • <!-- IF S_IN_MCP -->{L_MCP} • <!-- ELSEIF S_IN_UCP -->{L_UCP} • <!-- ENDIF -->{PAGE_TITLE}</title>
|
<title>{SITENAME} • <!-- IF S_IN_MCP -->{L_MCP} • <!-- ELSEIF S_IN_UCP -->{L_UCP} • <!-- ENDIF -->{PAGE_TITLE}</title>
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user