copyright update
[squirrelmail.git] / plugins / fortune / config_default.php
CommitLineData
28e62e6d 1<?php
4b4abf93 2
28e62e6d 3/**
4 * Default Fortune plugin configuration
91e0dccc 5 *
28e62e6d 6 * Configuration defaults to /usr/games/fortune with short quotes
7 *
47ccfad4 8 * @copyright &copy; 2004-2006 The SquirrelMail Project Team
28e62e6d 9 * @license http://opensource.org/licenses/gpl-license.php GNU Public License
10 * @version $Id$
11 * @package plugins
12 * @subpackage fortune
13 */
14
15/**
16 * program that displays quotes
17 * @global string $fortune_location
18 */
19$fortune_location = '/usr/games/fortune';
20
21/**
22 * options that have to be passed to program
23 * @global string $fortune_options
24 * @since 1.5.1
25 */
26$fortune_options = '-s';
e50f5ac2 27?>