From: Southparkfan Date: Mon, 1 Feb 2016 13:01:58 +0000 (+0100) Subject: XMPValidate: fix undefined variable for logger X-Git-Tag: 1.31.0-rc.0~8110^2 X-Git-Url: http://git.cyclocoop.org/%7B%24admin_url%7Dmembres/cotisations/gestion/rappel_supprimer.php?a=commitdiff_plain;h=216716a7f72ad9b57e68a3b76a97b5d3eae339f5;p=lhc%2Fweb%2Fwiklou.git XMPValidate: fix undefined variable for logger Change-Id: I8903e89bd93ef62236023fb07d78ade722eb102a --- diff --git a/includes/media/XMPValidate.php b/includes/media/XMPValidate.php index 519c420cd3..e1f69db2fd 100644 --- a/includes/media/XMPValidate.php +++ b/includes/media/XMPValidate.php @@ -70,7 +70,7 @@ class XMPValidate implements LoggerAwareInterface { return; } if ( $val !== 'True' && $val !== 'False' ) { - $this->debug->info( __METHOD__ . " Expected True or False but got $val" ); + $this->logger->info( __METHOD__ . " Expected True or False but got $val" ); $val = null; } }