check for empty string before we add it to the token array
[squirrelmail.git] / class / mime / Language.class.php
1 <?php
2
3 /**
4 * Language.class.php
5 *
6 * Copyright (c) 2003 The SquirrelMail Project Team
7 * Licensed under the GNU GPL. For full terms see the file COPYING.
8 *
9 * This contains functions needed to handle mime messages.
10 *
11 * $Id$
12 */
13
14 class Language {
15 function Language($name) {
16 $this->name = $name;
17 $this->properties = array();
18 }
19 }
20
21 ?>