@@ -50,10 +50,11 @@ |
||
| 50 | 50 | $count = 0; |
| 51 | 51 | $url_encoded_fmt_stream_map; |
| 52 | 52 | foreach($fmt_stream_map as $stream) {
|
| 53 | - if($count == 0) |
|
| 54 | - $url_encoded_fmt_stream_map = http_build_query($stream); |
|
| 55 | - else |
|
| 56 | - $url_encoded_fmt_stream_map = $url_encoded_fmt_stream_map . "," . http_build_query($stream); |
|
| 53 | + if($count == 0) { |
|
| 54 | + $url_encoded_fmt_stream_map = http_build_query($stream); |
|
| 55 | + } else { |
|
| 56 | + $url_encoded_fmt_stream_map = $url_encoded_fmt_stream_map . "," . http_build_query($stream); |
|
| 57 | + } |
|
| 57 | 58 | $count++; |
| 58 | 59 | } |
| 59 | 60 | |