This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- a/inc/media.php 2018-12-28 17:46:14.000000000 +0100 | |
+++ b/inc/media.php 2018-08-20 21:05:55.000000000 +0200 | |
@@ -1084,6 +1084,15 @@ | |
$w = (int) $info[0]; | |
$h = (int) $info[1]; | |
+ if ($meta) { | |
+ $orientation = media_getTag('Orientation', $meta); | |
+ if ($orientation == 3 || $orientation == 6) { | |
+ $tmp = $h; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python | |
import requests | |
import collections | |
import argparse | |
def get_failing_tests_by_block(base_url): | |
url = base_url + '/testReport/api/json' | |
response = requests.get(url) |
OlderNewer