1
0
mirror of https://github.com/Seldaek/monolog.git synced 2025-08-04 20:27:31 +02:00

Fixed typo

This commit is contained in:
Jordi Boggiano
2011-02-24 22:12:23 +01:00
parent 0bb419cb95
commit f4e85e9412

View File

@@ -74,7 +74,7 @@ class FingersCrossedHandler extends AbstractHandler
$this->handler->handle($message); $this->handler->handle($message);
} }
if ($this->bubble && $this->parent) { if ($this->bubble && $this->parent) {
$this->parent->handle($originalMessage); $this->parent->handle($message);
} }
return true; return true;
} }