Skip to content

Commit

Permalink
Fix styles and PHP 7.3 compability
Browse files Browse the repository at this point in the history
  • Loading branch information
uatrend committed Oct 30, 2019
1 parent 089ae3e commit 32a2323
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -136,6 +136,6 @@ public function weatherAction($data, $action)
$data['APPID'] = $this->apiKey;
$url .= '?' . http_build_query($data);

return App::response(file_get_contents($url), 200, ['Content-Type' => 'application/json']);
return App::response(file_get_contents((string) $url), 200, ['Content-Type' => 'application/json']);
}
}

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions app/system/modules/editor/app/components/link-picker.vue
Original file line number Diff line number Diff line change
Expand Up @@ -11,14 +11,14 @@
<div class="uk-margin">
<label for="form-link-title" class="uk-form-label">{{ 'Title' | trans }}</label>
<div class="uk-form-controls">
<input id="form-link-title" class="uk-width-1-1 uk-input" type="text" v-model="link.txt">
<input id="form-link-title" class="uk-input uk-width-1-1" type="text" v-model="link.txt">
</div>
</div>

<div class="uk-margin">
<label for="form-link-url" class="uk-form-label">{{ 'Url' | trans }}</label>
<div class="uk-form-controls">
<input-link id="form-link-url" input-class="uk-width-1-1" v-model="link.link"></input-link>
<input-link id="form-link-url" input-class="uk-width-xlarge" v-model="link.link"></input-link>
</div>
</div>
</div>
Expand Down

0 comments on commit 32a2323

Please sign in to comment.