X-Git-Url: https://git.heureux-cyclage.org/?a=blobdiff_plain;f=includes%2Fmedia%2FXMPValidate.php;h=519c420cd360a3472dd98678749890a9107e8a85;hb=e05e4b111ce743727957ed7da162349864dd1cd3;hp=55e8ce796a3d00221563cfcfcb3604123eca8614;hpb=f1a890c34cebd8744bf3a6277734275fb975575a;p=lhc%2Fweb%2Fwiklou.git diff --git a/includes/media/XMPValidate.php b/includes/media/XMPValidate.php index 55e8ce796a..519c420cd3 100644 --- a/includes/media/XMPValidate.php +++ b/includes/media/XMPValidate.php @@ -167,7 +167,7 @@ class XMPValidate implements LoggerAwareInterface { return; } - //check if its in a numeric range + // check if its in a numeric range $inRange = false; if ( isset( $info['rangeLow'] ) && isset( $info['rangeHigh'] ) @@ -231,7 +231,7 @@ class XMPValidate implements LoggerAwareInterface { return; } if ( !preg_match( '/^[-A-Za-z0-9]{2,}$/D', $val ) ) { - //this is a rather naive check. + // this is a rather naive check. $this->logger->info( __METHOD__ . " Expected Lang code but got $val" ); $val = null; } @@ -292,8 +292,8 @@ class XMPValidate implements LoggerAwareInterface { return; } - if ( !isset( $res[4] ) ) { //hour - //just have the year month day (if that) + if ( !isset( $res[4] ) ) { // hour + // just have the year month day (if that) $val = $res[1]; if ( isset( $res[2] ) ) { $val .= ':' . $res[2]; @@ -306,7 +306,7 @@ class XMPValidate implements LoggerAwareInterface { } if ( !isset( $res[7] ) || $res[7] === 'Z' ) { - //if hour is set, then minute must also be or regex above will fail. + // if hour is set, then minute must also be or regex above will fail. $val = $res[1] . ':' . $res[2] . ':' . $res[3] . ' ' . $res[4] . ':' . $res[5]; if ( isset( $res[6] ) && $res[6] !== '' ) {