Skip to content

Commit

Permalink
Fixed some issues with 5.3.0RC1, but there are still some failing tes…
Browse files Browse the repository at this point in the history
…ts, albeit not too worrying.
d11wtq committed Apr 1, 2009
1 parent dd908cc commit c8cf4b9
Showing 2 changed files with 6 additions and 1 deletion.
2 changes: 1 addition & 1 deletion lib/classes/Swift/Transport/EsmtpTransport.php
Original file line number Diff line number Diff line change
@@ -210,7 +210,7 @@ public function executeCommand($command, $codes = array(), &$failures = null)
// -- Mixin invocation code

/** Mixin handling method for ESMTP handlers */
private function __call($method, $args)
public function __call($method, $args)
{
foreach ($this->_handlers as $handler)
{
5 changes: 5 additions & 0 deletions test-suite/config.php
Original file line number Diff line number Diff line change
@@ -3,6 +3,11 @@
//Error reporting settings
error_reporting(E_ALL | E_STRICT); ini_set('display_errors', true);

if (defined('E_DEPRECATED'))
{
error_reporting(error_reporting() | E_DEPRECATED);
}

//E_STRICT compliance -- If you change this timezone some tests may fail -
// This only affects the tests, you need to ensure PHP is correctly set up in
// your own code

0 comments on commit c8cf4b9

Please sign in to comment.