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

« back to all changes in this revision

Viewing changes to libraries/StorageEngine.class.php

  • Committer: Bazaar Package Importer
  • Author(s): Michal Čihař
  • Date: 2009-06-30 14:05:13 UTC
  • mfrom: (1.2.1 upstream) (36.1.2 karmic)
  • Revision ID: james.westby@ubuntu.com-20090630140513-hz71do3sij2jhm4s
* New upstream version fixing XSS (PMASA-2009-5).
* Document no empty password in README.Debian and the shipped sample
  configuration file (LP: #388703).
* Install service file for avahi (if web service enabled and if avahi is
  installed) (LP: #369244).
* Mention protecting of setup if not using provided configuration snippets
  for webservers.
* Call ucf with --debconf-ok in postrm (Closes: #534894).

Show diffs side-by-side

added added

removed removed

Lines of Context:
3
3
/**
4
4
 * Library for extracting information about the available storage engines
5
5
 *
6
 
 * @version $Id: StorageEngine.class.php 11665 2008-10-19 10:51:12Z lem9 $
 
6
 * @version $Id: StorageEngine.class.php 11992 2008-11-24 11:14:37Z nijel $
 
7
 * @package phpMyAdmin
7
8
 */
8
9
 
9
10
/**
21
22
 
22
23
/**
23
24
 * base Storage Engine Class
 
25
 * @package phpMyAdmin
24
26
 */
25
27
class PMA_StorageEngine
26
28
{
140
142
     * @static
141
143
     * @uses    PMA_StorageEngine::getStorageEngines()
142
144
     * @param   string  $engine name of engine
143
 
     * @reutrn  boolean whether $engine is valid or not
 
145
     * @return  boolean whether $engine is valid or not
144
146
     */
145
147
    static public function isValid($engine)
146
148
    {