Add server to phpinfo link to avoid relogin with more servers.
Replace target="_new" with target="_blank" as it should be.
This commit is contained in:
@@ -19,6 +19,10 @@ $Source$
|
||||
(RFE #747343).
|
||||
* Documentation.*: Add simple LaTeX document, to show how to use LaTeX
|
||||
export.
|
||||
* main.php3: Add server to phpinfo link to avoid relogin with more
|
||||
servers.
|
||||
* main.php3, tbl_properties.inc.php3: Replace target="_new" with
|
||||
target="_blank" as it should be.
|
||||
|
||||
2003-06-02 Marc Delisle <lem9@users.sourceforge.net>
|
||||
### 2.5.1 released
|
||||
|
10
main.php3
10
main.php3
@@ -569,7 +569,7 @@ if ($is_superuser || $cfg['ShowPhpInfo']) {
|
||||
<tr>
|
||||
<td valign="baseline"><img src="<?php echo $item_img; ?>" width="7" height="7" alt="item" /></td>
|
||||
<td>
|
||||
<a href="phpinfo.php3" target="_new"><?php echo $strShowPHPInfo; ?></a>
|
||||
<a href="phpinfo.php3?<?php echo PMA_generate_common_url(); ?>" target="_blank"><?php echo $strShowPHPInfo; ?></a>
|
||||
</td>
|
||||
</tr>
|
||||
<?php
|
||||
@@ -581,10 +581,10 @@ echo "\n";
|
||||
<tr>
|
||||
<td valign="baseline"><img src="<?php echo $item_img; ?>" width="7" height="7" alt="item" /></td>
|
||||
<td>
|
||||
<a href="http://www.phpMyAdmin.net/" target="_new"><?php echo $strHomepageOfficial; ?></a><br />
|
||||
[<a href="ChangeLog" target="_new">ChangeLog</a>]
|
||||
[<a href="http://cvs.sourceforge.net/cgi-bin/viewcvs.cgi/phpmyadmin/phpMyAdmin/" target="_new">CVS</a>]
|
||||
[<a href="http://sourceforge.net/mail/?group_id=23067" target="_new">Lists</a>]
|
||||
<a href="http://www.phpMyAdmin.net/" target="_blank"><?php echo $strHomepageOfficial; ?></a><br />
|
||||
[<a href="ChangeLog" target="_blank">ChangeLog</a>]
|
||||
[<a href="http://cvs.sourceforge.net/cgi-bin/viewcvs.cgi/phpmyadmin/phpMyAdmin/" target="_blank">CVS</a>]
|
||||
[<a href="http://sourceforge.net/mail/?group_id=23067" target="_blank">Lists</a>]
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
@@ -596,7 +596,7 @@ if ($cfgRelation['commwork'] && $cfgRelation['mimework'] && $cfg['BrowseMIME'])
|
||||
|
||||
<tr>
|
||||
<td>
|
||||
<?php echo sprintf($strMIME_transformation_note, '<a href="libraries/transformations/overview.php3?' . PMA_generate_common_url($db, $table) . '" target="_new">', '</a>') . "\n"; ?>
|
||||
<?php echo sprintf($strMIME_transformation_note, '<a href="libraries/transformations/overview.php3?' . PMA_generate_common_url($db, $table) . '" target="_blank">', '</a>') . "\n"; ?>
|
||||
</td>
|
||||
</tr>
|
||||
<?php
|
||||
|
Reference in New Issue
Block a user