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