new menu name

This commit is contained in:
Marc Delisle
2002-09-07 10:41:17 +00:00
parent f0d56ea9e0
commit 62b64c9213
2 changed files with 2 additions and 2 deletions

View File

@@ -2204,7 +2204,7 @@ $cfg['PmaAbsoluteUri'] = (!empty($_SERVER['HTTPS']) ? 'https' : 'http') . '://'
</p>
<ul>
<li>Click on your db name in the left frame</li>
<li>Choose &quot;Query by example&quot;</li>
<li>Choose &quot;Query&quot;</li>
<li>Use tables: persons, towns, countries</li>
<li>Click &quot;Update query&quot;</li>
<li>In the fields row, choose persons.person_name and click the

View File

@@ -717,7 +717,7 @@ if (!defined('PMA_DISPLAY_TBL_LIB_INCLUDED')){
*/
function PMA_linkOrButton($url, $message, $js_conf)
{
if (strlen($url) <= 1024) {
if (strlen($url) <= 2047) {
$onclick_url = (empty($js_conf) ? '' : ' onclick="return confirmLink(this, \'' . $js_conf . '\')"');
echo ' <a href="' . $url . '"' . $onclick_url . '>' . "\n"
. ' ' . $message . '</a>' . "\n";