~ubuntu-branches/ubuntu/lucid/phpmyadmin/lucid

« back to all changes in this revision

Viewing changes to libraries/auth/cookie.auth.lib.php

  • Committer: Bazaar Package Importer
  • Author(s): Thijs Kinkhorst
  • Date: 2009-04-25 19:03:00 UTC
  • mfrom: (1.1.28 upstream)
  • Revision ID: james.westby@ubuntu.com-20090425190300-8ilk5hlf1sseou7z
Tags: 4:3.1.4-1
New upstream release.

Show diffs side-by-side

added added

removed removed

Lines of Context:
5
5
 * Thanks to Piotr Roszatycki <d3xter at users.sourceforge.net> and
6
6
 * Dan Wilson who built this patch for the Debian package.
7
7
 *
8
 
 * @version $Id: cookie.auth.lib.php 11634 2008-10-04 15:06:00Z lem9 $
 
8
 * @version $Id: cookie.auth.lib.php 12277 2009-03-03 13:30:49Z nijel $
9
9
 */
10
10
 
11
11
if (! defined('PHPMYADMIN')) {
230
230
    <legend>
231
231
<?php
232
232
    echo $GLOBALS['strLogin'];
233
 
    // no real need to put a link to doc here, and it would reveal the
234
 
    // version number
 
233
    echo '<a href="./Documentation.html" target="documentation" ' .
 
234
        'title="' . $GLOBALS['strPmaDocumentation'] . '">';
 
235
    if ($GLOBALS['cfg']['ReplaceHelpImg']) {
 
236
        echo '<img class="icon" src="' . $GLOBALS['pmaThemeImage'] . 'b_help.png" width="11" height="11" alt="' . $GLOBALS['strPmaDocumentation'] . '" />';
 
237
    } else {
 
238
        echo '(*)';
 
239
    }
 
240
    echo '</a>';
235
241
?>
236
242
</legend>
237
243