~ubuntu-branches/ubuntu/hardy/phpmyadmin/hardy

« back to all changes in this revision

Viewing changes to scripts/setup.php

  • Committer: Bazaar Package Importer
  • Author(s): Thijs Kinkhorst, Thijs Kinkhorst, Translations
  • Date: 2007-06-17 17:52:03 UTC
  • mfrom: (1.1.12 upstream)
  • Revision ID: james.westby@ubuntu.com-20070617175203-6oa2mpmgazkhp8tl
Tags: 4:2.10.2-1

[ Thijs Kinkhorst ]
* New upstream release.
* Welcome Michal Čihař as new co-maintainer.

[ Translations ]
* Vietnamese by Clytie Siddall (Closes: #427177).

Show diffs side-by-side

added added

removed removed

Lines of Context:
9
9
 * @author     Michal Čihař <michal@cihar.com>
10
10
 * @copyright  2006 Michal Čihař <michal@cihar.com>
11
11
 * @license    http://www.gnu.org/licenses/gpl.html GNU GPL 2.0
12
 
 * @version    Subversion $Id: setup.php 9697 2006-11-13 08:32:28Z nijel $
 
12
 * @version    Subversion $Id: setup.php 10420 2007-06-03 23:30:40Z lem9 $
13
13
 */
14
 
/* $Id: setup.php 9697 2006-11-13 08:32:28Z nijel $ */
 
14
/* $Id: setup.php 10420 2007-06-03 23:30:40Z lem9 $ */
15
15
// vim: expandtab sw=4 ts=4 sts=4:
16
16
 
17
17
// Grab phpMyAdmin version and PMA_dl function
18
18
define( 'PMA_MINIMUM_COMMON', TRUE );
 
19
define( 'PMA_SETUP', TRUE );
19
20
chdir('..');
20
21
require_once('./libraries/common.lib.php');
21
22
 
26
27
 
27
28
// Script information
28
29
$script_info = 'phpMyAdmin ' . $PMA_Config_Setup->get('PMA_VERSION') . ' setup script by Michal Čihař <michal@cihar.com>';
29
 
$script_version = '$Id: setup.php 9697 2006-11-13 08:32:28Z nijel $';
 
30
$script_version = '$Id: setup.php 10420 2007-06-03 23:30:40Z lem9 $';
30
31
 
31
32
// Grab action
32
33
if (isset($_POST['action'])) {