|
From: Alexandros V. <av...@us...> - 2005-12-06 15:05:42
|
Update of /cvsroot/sieve-php/sieve-php In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv16700 Modified Files: sieve-php.lib.php Log Message: Oops. scriptname should be put outside the single quote. Index: sieve-php.lib.php =================================================================== RCS file: /cvsroot/sieve-php/sieve-php/sieve-php.lib.php,v retrieving revision 1.9 retrieving revision 1.10 diff -C2 -d -r1.9 -r1.10 *** sieve-php.lib.php 6 Dec 2005 12:38:04 -0000 1.9 --- sieve-php.lib.php 6 Dec 2005 15:05:28 -0000 1.10 *************** *** 547,551 **** $len=strlen($this->script); ! $this->lastcmd = 'PUTSCRIPT "$scriptname" {'.$len.'+}'."\r\n".$this->script."\r\n"; fputs($this->fp, $this->lastcmd); return sieve::get_response(); --- 547,551 ---- $len=strlen($this->script); ! $this->lastcmd = 'PUTSCRIPT "'.$scriptname.'" {'.$len.'+}'."\r\n".$this->script."\r\n"; fputs($this->fp, $this->lastcmd); return sieve::get_response(); |