Skip to content

Commit

Permalink
FIX: Switch Unsplash Collection
Browse files Browse the repository at this point in the history
- switch from `random` to `featured`
  • Loading branch information
aljawaid committed Apr 16, 2023
1 parent 6a8dd88 commit c6216d4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Template/auth/index.php
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?php if ($this->task->configModel->get('use_unsplash', '') == 'allow_usage'): ?>
<style type="text/css">
body {
background: url(https://source.unsplash.com/random) no-repeat center center fixed;
background: url(https://source.unsplash.com/featured) no-repeat center center fixed;
background-size: cover;
padding-top: 1px;
}
Expand Down
2 changes: 1 addition & 1 deletion Template/auth/index_customizer.php
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?php if ($this->task->configModel->get('use_unsplash', '') == 'allow_usage'): ?>
<style type="text/css">
body {
background: url(https://source.unsplash.com/random) no-repeat center center fixed;
background: url(https://source.unsplash.com/featured) no-repeat center center fixed;
background-size: cover;
padding-top: 1px;
}
Expand Down

0 comments on commit c6216d4

Please sign in to comment.