Skip to content

Commit 184f220

Browse files
authored
Merge branch 'master' into feature-update-core-ui
2 parents fb4ab47 + 04b8632 commit 184f220

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

63 files changed

+1543
-604
lines changed

.env.example

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,7 @@ MAIL_ENCRYPTION=null
3737
PUSHER_APP_ID=
3838
PUSHER_APP_KEY=
3939
PUSHER_APP_SECRET=
40+
PUSHER_APP_CLUSTER=mt1
4041

4142
# Access
4243
ENABLE_REGISTRATION=true

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ Thumbs.db
1919
*.sublime-workspace
2020
.project
2121
_ide_helper.php
22+
.phpstorm.meta.php
2223
composer.phar
2324
error.log
2425
output.txt

app/Helpers/Frontend/Auth/Socialite.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,11 +41,11 @@ public function getSocialLinks()
4141
$socialite_enable[] = "<a href='".route('frontend.auth.social.login', 'twitter')."' class='btn btn-sm btn-outline-info m-1'><i class='fa fa-twitter'></i> ".__('labels.frontend.auth.login_with', ['social_media' => 'Twitter']).'</a>';
4242
}
4343

44-
if (count($socialite_enable)) {
44+
if ($count = count($socialite_enable)) {
4545
$socialite_links .= '<hr />';
4646
}
4747

48-
for ($i = 0; $i < count($socialite_enable); $i++) {
48+
for ($i = 0; $i < $count; $i++) {
4949
$socialite_links .= ($socialite_links != '' ? ' ' : '').$socialite_enable[$i];
5050
}
5151

composer.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,9 @@
99
"appstract/laravel-blade-directives": "^0.4.4",
1010
"arcanedev/log-viewer": "^4.4",
1111
"arcanedev/no-captcha": "^5.0",
12+
"codedungeon/phpunit-result-printer": "0.4.4",
1213
"creativeorange/gravatar": "~1.0",
1314
"davejamesmiller/laravel-breadcrumbs": "^4.1",
14-
"doctrine/dbal": "^2.6",
1515
"fideloper/proxy": "~3.3",
1616
"hieu-le/active": "^3.5",
1717
"laravel/framework": "5.5.*",
@@ -23,6 +23,7 @@
2323
},
2424
"require-dev": {
2525
"barryvdh/laravel-debugbar": "^3.0",
26+
"barryvdh/laravel-ide-helper": "^2.4",
2627
"filp/whoops": "~2.0",
2728
"fzaninotto/faker": "~1.4",
2829
"laravel/browser-kit-testing": "^2.0",

0 commit comments

Comments
 (0)