Fix PHP7 warning "non well formed numeric value encountered"
[lhc/web/wiklou.git] / includes / media / FormatMetadata.php
index 9ebc63f..b98d7f1 100644 (file)
@@ -271,7 +271,7 @@ class FormatMetadata extends ContextSource {
                                        // TODO: YCbCrCoefficients  #p27 (see annex E)
                                        case 'ExifVersion':
                                        case 'FlashpixVersion':
-                                               $val = "$val" / 100;
+                                               $val = (int)$val / 100;
                                                break;
 
                                        case 'ColorSpace':