From: tokul Date: Tue, 2 Aug 2005 06:58:21 +0000 (+0000) Subject: fix gettext and sprintf formating now. work on error_box later. X-Git-Url: https://vcs.fsf.org/?a=commitdiff_plain;h=3bb04c8355d298f91da740b9fdc5d0474f05e6bc;p=squirrelmail.git fix gettext and sprintf formating now. work on error_box later. git-svn-id: https://svn.code.sf.net/p/squirrelmail/code/trunk/squirrelmail@9872 7612ce4b-ef26-0410-bec9-ea0150e637f0 --- diff --git a/plugins/squirrelspell/modules/check_me.mod b/plugins/squirrelspell/modules/check_me.mod index 4ff9485c..146fb4ec 100644 --- a/plugins/squirrelspell/modules/check_me.mod +++ b/plugins/squirrelspell/modules/check_me.mod @@ -98,12 +98,24 @@ if( check_php_version ( 4, 3 ) ) { ); $spell_proc = @proc_open($sqspell_command, $descriptorspec, $pipes); if ( ! is_resource ( $spell_proc ) ) { - error_box ( _("Could not run the spellchecker command (%s).", + // TODO: replace error_box() with sqspell_makeWindow() + error_box ( sprintf(_("Could not run the spellchecker command (%s)."), htmlspecialchars($sqspell_command) ) , $color ); + // close html tags and abort script. + echo ""; + exit(); } if ( ! @fwrite($pipes[0], $sqspell_new_text) ) { - error_box ( _("Error while writing to pipe.", - htmlspecialchars($floc) ) , $color ); + // TODO: replace error_box() with sqspell_makeWindow() + error_box ( _("Error while writing to pipe.") , $color ); + // close all three $pipes here. + for($i=0; $i<=2; $i++) { + // disable all fclose error messages + @fclose($pipes[$i]); + } + // close html tags and abort script. + echo ""; + exit(); } fclose($pipes[0]); $sqspell_output = array(); @@ -115,17 +127,33 @@ if( check_php_version ( 4, 3 ) ) { } $sqspell_exitcode=proc_close($spell_proc); } else { + // add slash to attachment directory, if it does not end with slash. + if (substr($attachment_dir, -1) != '/') + $attachment_dir = $attachment_dir . '/'; + + // find unused file in attachment directory do { - $floc = "$attachment_dir/" . md5($sqspell_new_text . microtime()); + $floc = $attachment_dir . md5($sqspell_new_text . microtime()); } while (file_exists($floc)); + $fp = @fopen($floc, 'w'); if ( ! is_resource ($fp) ) { - error_box ( _("Could not open temporary file '%s'.", + // TODO: replace error_box() with sqspell_makeWindow() + error_box ( sprintf(_("Could not open temporary file '%s'."), htmlspecialchars($floc) ) , $color ); + // failed to open temp file. abort script. + echo ""; + exit(); } if ( ! @fwrite($fp, $sqspell_new_text) ) { - error_box ( _("Error while writing to temporary file '%s'.", + // TODO: replace error_box() with sqspell_makeWindow() + error_box ( sprintf(_("Error while writing to temporary file '%s'."), htmlspecialchars($floc) ) , $color ); + // close file descriptor + fclose($fp); + // failed writing to temp file. abort script. + echo ""; + exit(); } fclose($fp); exec("$sqspell_command < $floc 2>&1", $sqspell_output, $sqspell_exitcode);