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

« back to all changes in this revision

Viewing changes to libraries/vendor_config.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:
 
1
<?php
 
2
/* vim: set expandtab sw=4 ts=4 sts=4: */
 
3
/**
 
4
 * File for vendor customisation, you can change here paths or some behaviour,
 
5
 * which vendors such as Linux distibutions might want to change.
 
6
 *
 
7
 * For changing this file you should know what you are doing. For this reason
 
8
 * options here are not part of normal configuration.
 
9
 *
 
10
 * @version $Id: vendor_config.php 12081 2008-12-05 00:25:59Z lem9 $
 
11
 * @package phpMyAdmin
 
12
 */
 
13
 
 
14
/**
 
15
 * Path to changelog file, can be gzip compressed. Useful when you want to
 
16
 * have documentation somewhere else, eg. /usr/share/doc.
 
17
 */
 
18
define('CHANGELOG_FILE', './ChangeLog');
 
19
 
 
20
/**
 
21
 * Path to license file. Useful when you want to have documentation somewhere
 
22
 * else, eg. /usr/share/doc.
 
23
 */
 
24
define('LICENSE_FILE', './LICENSE');
 
25
 
 
26
/**
 
27
 * Path to config file generated using setup script.
 
28
 */
 
29
define('SETUP_CONFIG_FILE', './config/config.inc.php');
 
30
 
 
31
/**
 
32
 * Whether setup requires writable directory where config
 
33
 * file will be generated.
 
34
 */
 
35
define('SETUP_DIR_WRITABLE', true);
 
36
 
 
37
/**
 
38
 * Whether to skip mtime check on config file and load it on every request.
 
39
 * This has slight performance drawback, but it is the only way to handle
 
40
 * inclusions of other php scripts from config.
 
41
 */
 
42
define('SKIP_MTIME_CONFIG_CHECK', false);
 
43
 
 
44
?>