* @param array $a (recursive) array
* @param mixed $v value to move
* @param int $p positions to move
- * @return bool $succes
+ * @return bool $success
* @author Marc Groot Koerkamp
*/
function sqm_array_kmove_value(&$a,$v,$p) {
* @param array $a (recursive) array
* @param mixed $v value to move
* @param int $p positions to move
- * @return bool $succes
+ * @return bool $success
* @author Marc Groot Koerkamp
*/
function sqm_array_move_value(&$a,$v,$p) {
*
* @param array $aK array keys
* @param array $aV array values
- * @return mixed $r combined array on succes, false on failure
+ * @return mixed $r combined array on success, false on failure
* @author Marc Groot Koerkamp
*/
function array_combine($aK, $aV) {
}
return $r;
}
-}
\ No newline at end of file
+}
return false;
}
}
- $succes = false;
+ $success = false;
if ($stream) {
$length = $deliver->mail($composeMessage, $stream);
- $succes = $deliver->finalizeStream($stream);
+ $success = $deliver->finalizeStream($stream);
}
- if (!$succes) {
+ if (!$success) {
$msg = $deliver->dlv_msg . '<br />' .
_("Server replied:") . ' ' . $deliver->dlv_ret_nr . ' ' .
$deliver->dlv_server_msg;
}
sqimap_logout($imap_stream);
}
- return $succes;
+ return $success;
}
?>