瀏覽代碼

fix imprint

1day2die 2 年之前
父節點
當前提交
c2d50c3b33

+ 3 - 3
themes/default/views/auth/login.blade.php

@@ -125,13 +125,13 @@
         {{-- imprint and privacy policy --}}
         {{-- imprint and privacy policy --}}
         <div class="fixed-bottom ">
         <div class="fixed-bottom ">
             <div class="container text-center">
             <div class="container text-center">
-                @if (config('SETTINGS::SYSTEM:SHOW_IMPRINT' == "true"))
+                @if (config('SETTINGS::SYSTEM:SHOW_IMPRINT') == "true")
                     <a href="{{ route('imprint') }}"><strong>{{ __('Imprint') }}</strong></a> |
                     <a href="{{ route('imprint') }}"><strong>{{ __('Imprint') }}</strong></a> |
                 @endif
                 @endif
-                @if (config('SETTINGS::SYSTEM:SHOW_PRIVACY' == "true"))
+                @if (config('SETTINGS::SYSTEM:SHOW_PRIVACY') == "true")
                     <a href="{{ route('privacy') }}"><strong>{{ __('Privacy') }}</strong></a>
                     <a href="{{ route('privacy') }}"><strong>{{ __('Privacy') }}</strong></a>
                 @endif
                 @endif
-                @if (config('SETTINGS::SYSTEM:SHOW_TOS' == "true"))
+                @if (config('SETTINGS::SYSTEM:SHOW_TOS') == "true")
                     | <a target="_blank" href="{{ route('tos') }}"><strong>{{ __('Terms of Service') }}</strong></a>
                     | <a target="_blank" href="{{ route('tos') }}"><strong>{{ __('Terms of Service') }}</strong></a>
                 @endif
                 @endif
             </div>
             </div>

+ 3 - 3
themes/default/views/auth/passwords/email.blade.php

@@ -70,13 +70,13 @@
         {{-- imprint and privacy policy --}}
         {{-- imprint and privacy policy --}}
         <div class="fixed-bottom ">
         <div class="fixed-bottom ">
             <div class="container text-center">
             <div class="container text-center">
-                @if (config('SETTINGS::SYSTEM:SHOW_IMPRINT' == "true"))
+                @if (config('SETTINGS::SYSTEM:SHOW_IMPRINT') == "true")
                     <a href="{{ route('imprint') }}"><strong>{{ __('Imprint') }}</strong></a> |
                     <a href="{{ route('imprint') }}"><strong>{{ __('Imprint') }}</strong></a> |
                 @endif
                 @endif
-                @if (config('SETTINGS::SYSTEM:SHOW_PRIVACY' == "true"))
+                @if (config('SETTINGS::SYSTEM:SHOW_PRIVACY') == "true")
                     <a href="{{ route('privacy') }}"><strong>{{ __('Privacy') }}</strong></a>
                     <a href="{{ route('privacy') }}"><strong>{{ __('Privacy') }}</strong></a>
                 @endif
                 @endif
-                @if (config('SETTINGS::SYSTEM:SHOW_TOS' == "true"))
+                @if (config('SETTINGS::SYSTEM:SHOW_TOS') == "true")
                     | <a target="_blank" href="{{ route('tos') }}"><strong>{{ __('Terms of Service') }}</strong></a>
                     | <a target="_blank" href="{{ route('tos') }}"><strong>{{ __('Terms of Service') }}</strong></a>
                 @endif
                 @endif
             </div>
             </div>

+ 3 - 3
themes/default/views/auth/passwords/reset.blade.php

@@ -81,13 +81,13 @@
         {{-- imprint and privacy policy --}}
         {{-- imprint and privacy policy --}}
         <div class="fixed-bottom ">
         <div class="fixed-bottom ">
             <div class="container text-center">
             <div class="container text-center">
-                @if (config('SETTINGS::SYSTEM:SHOW_IMPRINT' == "true"))
+                @if (config('SETTINGS::SYSTEM:SHOW_IMPRINT') == "true")
                     <a href="{{ route('imprint') }}"><strong>{{ __('Imprint') }}</strong></a> |
                     <a href="{{ route('imprint') }}"><strong>{{ __('Imprint') }}</strong></a> |
                 @endif
                 @endif
-                @if (config('SETTINGS::SYSTEM:SHOW_PRIVACY' == "true"))
+                @if (config('SETTINGS::SYSTEM:SHOW_PRIVACY') == "true")
                     <a href="{{ route('privacy') }}"><strong>{{ __('Privacy') }}</strong></a>
                     <a href="{{ route('privacy') }}"><strong>{{ __('Privacy') }}</strong></a>
                 @endif
                 @endif
-                @if (config('SETTINGS::SYSTEM:SHOW_TOS' == "true"))
+                @if (config('SETTINGS::SYSTEM:SHOW_TOS') == "true")
                     | <a target="_blank" href="{{ route('tos') }}"><strong>{{ __('Terms of Service') }}</strong></a>
                     | <a target="_blank" href="{{ route('tos') }}"><strong>{{ __('Terms of Service') }}</strong></a>
                 @endif
                 @endif
             </div>
             </div>

+ 3 - 3
themes/default/views/auth/register.blade.php

@@ -179,13 +179,13 @@
     {{-- imprint and privacy policy --}}
     {{-- imprint and privacy policy --}}
     <div class="fixed-bottom ">
     <div class="fixed-bottom ">
         <div class="container text-center">
         <div class="container text-center">
-            @if (config('SETTINGS::SYSTEM:SHOW_IMPRINT' == "true"))
+            @if (config('SETTINGS::SYSTEM:SHOW_IMPRINT') == "true")
                 <a href="{{ route('imprint') }}"><strong>{{ __('Imprint') }}</strong></a> |
                 <a href="{{ route('imprint') }}"><strong>{{ __('Imprint') }}</strong></a> |
             @endif
             @endif
-            @if (config('SETTINGS::SYSTEM:SHOW_PRIVACY' == "true"))
+            @if (config('SETTINGS::SYSTEM:SHOW_PRIVACY') == "true")
                 <a href="{{ route('privacy') }}"><strong>{{ __('Privacy') }}</strong></a>
                 <a href="{{ route('privacy') }}"><strong>{{ __('Privacy') }}</strong></a>
             @endif
             @endif
-            @if (config('SETTINGS::SYSTEM:SHOW_TOS' == "true"))
+            @if (config('SETTINGS::SYSTEM:SHOW_TOS') == "true")
                 | <a target="_blank" href="{{ route('tos') }}"><strong>{{ __('Terms of Service') }}</strong></a>
                 | <a target="_blank" href="{{ route('tos') }}"><strong>{{ __('Terms of Service') }}</strong></a>
             @endif
             @endif
         </div>
         </div>

+ 5 - 5
themes/default/views/layouts/main.blade.php

@@ -428,15 +428,15 @@
 
 
             {{-- Show imprint and privacy link --}}
             {{-- Show imprint and privacy link --}}
             <div class="float-right d-none d-sm-inline-block">
             <div class="float-right d-none d-sm-inline-block">
-                @if (config('SETTINGS::SYSTEM:SHOW_IMPRINT' == "true"))
+                @if (config('SETTINGS::SYSTEM:SHOW_IMPRINT') == "true")
                     <a target="_blank" href="{{ route('imprint') }}"><strong>{{ __('Imprint') }}</strong></a> |
                     <a target="_blank" href="{{ route('imprint') }}"><strong>{{ __('Imprint') }}</strong></a> |
                 @endif
                 @endif
-                @if (config('SETTINGS::SYSTEM:SHOW_PRIVACY' == "true"))
+                @if (config('SETTINGS::SYSTEM:SHOW_PRIVACY') == "true")
                     <a target="_blank" href="{{ route('privacy') }}"><strong>{{ __('Privacy') }}</strong></a>
                     <a target="_blank" href="{{ route('privacy') }}"><strong>{{ __('Privacy') }}</strong></a>
                 @endif
                 @endif
-                    @if (config('SETTINGS::SYSTEM:SHOW_TOS' == "true"))
-                       | <a target="_blank" href="{{ route('tos') }}"><strong>{{ __('Terms of Service') }}</strong></a>
-                    @endif
+                @if (config('SETTINGS::SYSTEM:SHOW_TOS') == "true")
+                    | <a target="_blank" href="{{ route('tos') }}"><strong>{{ __('Terms of Service') }}</strong></a>
+                @endif
             </div>
             </div>
         </footer>
         </footer>