~ubuntu-branches/ubuntu/hardy/squirrelmail/hardy-updates

« back to all changes in this revision

Viewing changes to functions/gettext.php

  • Committer: Bazaar Package Importer
  • Author(s): Thijs Kinkhorst
  • Date: 2006-07-04 14:49:23 UTC
  • mfrom: (1.1.4 upstream)
  • Revision ID: james.westby@ubuntu.com-20060704144923-w5l1xdbivclpkmda
Tags: 2:1.4.7-1
* New upstream bugfix release.
  + Addresses some low-impact, theoretical or disputed security bugs,
    for which the code is tightened just-in-case:
    - Possible local file inclusion (Closes: #373731, CVE-2006-2842)
    - XSS in search.php (Closes: #375782, CVE-2006-3174)
  + Adds note to db-backend.txt about postgreSQL (Closes: #376605).

* Checked for standards version to 3.7.2, no changes necessary.
* Update maintainer address.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
<?php
 
2
 
2
3
/**
3
4
 * SquirrelMail internal gettext functions
4
5
 *
5
 
 * Copyright (c) 1999-2006 The SquirrelMail Project Team
6
 
 * Licensed under the GNU GPL. For full terms see the file COPYING.
7
 
 *
8
 
 * Alternate to the system's built-in gettext.
9
 
 * relies on .po files (can't read .mo easily).
10
 
 * Uses the session for caching (speed increase)
11
 
 * Possible use in other PHP scripts?  The only SM-specific thing is
12
 
 *   $sm_language, I think
 
6
 * Alternate to the system's built-in gettext. Relies on .po files (can't read
 
7
 * .mo easily). Uses the session for caching (speed increase). Possible use in
 
8
 * other PHP scripts? The only SM-specific thing is $sm_language, I think.
13
9
 *
14
10
 * @link http://www.php.net/gettext Original php gettext manual
15
 
 * @version $Id: gettext.php,v 1.19.2.5 2006/02/03 22:27:47 jervfors Exp $
 
11
 * @copyright &copy; 1999-2006 The SquirrelMail Project Team
 
12
 * @license http://opensource.org/licenses/gpl-license.php GNU Public License
 
13
 * @version $Id: gettext.php,v 1.19.2.6 2006/04/14 22:27:07 jervfors Exp $
 
14
 * @since 1.1.2
16
15
 * @package squirrelmail
17
16
 * @subpackage i18n
18
17
 */