~ubuntu-branches/ubuntu/intrepid/phpmyadmin/intrepid-security

« back to all changes in this revision

Viewing changes to left.php

  • Committer: Bazaar Package Importer
  • Author(s): Thijs Kinkhorst
  • Date: 2006-11-22 22:24:02 UTC
  • mfrom: (1.1.10 upstream)
  • Revision ID: james.westby@ubuntu.com-20061122222402-jwfycdbd9100jzti
Tags: 4:2.9.1.1-1
* New upstream release.
  - Addresses several security issues (Closes: #399329).

* In Depends, explicitly prefer the apache2/apache PHP module, to make
  sure the correct one is selected upon installation.
* Drop 100-dutch_fixtypo.patch, integrated upstream.

* Add note to default config file about adding sensitive data
  to that file (Closes: #321529).
* Update README.Debian with information about register_globals.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
<?php
2
 
/* $Id: left.php 9215 2006-08-01 07:15:30Z cybot_tm $ */
 
2
/* $Id: left.php 9710 2006-11-17 08:59:43Z nijel $ */
3
3
// vim: expandtab sw=4 ts=4 sts=4:
4
4
/**
5
5
 * the navigation frame - displays server, db and table selection tree
533
533
            }
534
534
            echo ' id="icon_' . htmlspecialchars($table_db . '.' . $table['Name']) . '"'
535
535
                .' width="10" height="10" alt="' . $GLOBALS['strBrowse'] . '" /></a>' . "\n"
536
 
                .'<a href="' . $href . '" title="' . $table['Comment']
537
 
                .' (' . PMA_formatNumber($table['Rows'], 0) . ' ' . $GLOBALS['strRows'] . ')"'
 
536
                .'<a href="' . $href . '" title="' . htmlspecialchars($table['Comment']
 
537
                .' (' . PMA_formatNumber($table['Rows'], 0) . ' ' . $GLOBALS['strRows']) . ')"'
538
538
                .' id="' . htmlspecialchars($table_db . '.' . $table['Name']) . '">'
539
539
                . htmlspecialchars($table['disp_name']) . '</a>';
540
540
            echo '</li>' . "\n";