Update of /cvsroot/serverfilters/serversidefilter
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv8330
Modified Files:
options.php
Log Message:
Missing switch of text domain
Index: options.php
===================================================================
RCS file: /cvsroot/serverfilters/serversidefilter/options.php,v
retrieving revision 1.5
retrieving revision 1.6
diff -C2 -d -r1.5 -r1.6
*** options.php 30 Nov 2005 23:39:42 -0000 1.5
--- options.php 30 Nov 2005 23:53:59 -0000 1.6
***************
*** 57,60 ****
--- 57,62 ----
+ bindtextdomain('serversidefilter', SM_PATH . 'locale');
+ textdomain('serversidefilter');
$fields = array('From' => _("From"),
'Subject' => _("Subject"),
***************
*** 70,73 ****
--- 72,77 ----
'Is Exactly' => _("Is Exactly"),
'Matches Regex' => _("Matches Regex"));
+ bindtextdomain('squirrelmail', SM_PATH . 'locale');
+ textdomain('squirrelmail');
$spamrule_set = false;
|