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

« back to all changes in this revision

Viewing changes to plugins/squirrelspell/modules/edit_dic.mod

  • Committer: Bazaar Package Importer
  • Author(s): Thijs Kinkhorst
  • Date: 2005-02-06 21:41:51 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20050206214151-z4n1o8mnttgzuj0y
Tags: 2:1.4.4-3
* Move default_pref config file from /var to /etc, as per Debian policy
  (Closes: #293281)
* [JvW] (finally) override two lintian warnings about nonstandard
  permissions that are intentional (Closes: #293366)

Show diffs side-by-side

added added

removed removed

Lines of Context:
9
9
 *
10
10
 * This module lets the user edit his/her personal dictionary.
11
11
 *
12
 
 * $Id: edit_dic.mod,v 1.5 2002/12/31 12:49:40 kink Exp $
 
12
 * $Id: edit_dic.mod,v 1.5.2.1 2004/04/26 22:04:39 kink Exp $
13
13
 *
14
14
 * @author Konstantin Riabitsev <icon@duke.edu> ($Author: kink $)
15
15
 * @version $Date
81
81
            || $j==intval(sizeof($words_ary)/3*2)){
82
82
          $msg .= "</td><td valign=\"top\">\n";
83
83
        }
84
 
        $msg .= "<input type=\"checkbox\" name=\"words_ary[]\" "
85
 
           . "value=\"$words_ary[$j]\"> $words_ary[$j]<br>";
 
84
        $msg .= '<input type="checkbox" name="words_ary[]" '
 
85
           . 'value="' . htmlspecialchars($words_ary[$j]) . '"> '
 
86
           . htmlspecialchars($words_ary[$j])."<br>\n";
86
87
      }
87
88
      $msg .= '</td></tr></table></td></tr>'
88
89
         . "<tr bgcolor=\"$color[0]\" align=\"center\"><td>"
108
109
 * Local variables:
109
110
 * mode: php
110
111
 * End:
 
112
 * vim: syntax=php
111
113
 */
112
114
 
113
115
?>