File tree Expand file tree Collapse file tree 3 files changed +7
-5
lines changed
Expand file tree Collapse file tree 3 files changed +7
-5
lines changed Original file line number Diff line number Diff line change @@ -91,9 +91,11 @@ public function handle()
9191 $ txt .= ' - ' ;
9292 // Clauses
9393 foreach ($ control ->measures () as $ measure ) {
94- $ txt .= '<a href=" ' . url ('/alice/show/ ' . $ measure ->id ) . '"> ' . htmlentities ($ measure ->clause ) . '</a> ' ;
95- // Space
96- $ txt .= ' ' ;
94+ if ($ measure !==null ) {
95+ $ txt .= '<a href=" ' . url ('/alice/show/ ' . $ measure ->id ) . '"> ' . htmlentities ($ measure ->clause ) . '</a> ' ;
96+ // Space
97+ $ txt .= ' ' ;
98+ }
9799 }
98100 $ txt .= ' - ' ;
99101 // Name
Original file line number Diff line number Diff line change @@ -29,7 +29,7 @@ public function register()
2929 public function boot ()
3030 {
3131 if (
32- (App::environment ('production ' ) && (Config::get ('app.force_https ' ) === null ))
32+ (App::environment ('production ' ) && (Config::get ('app.force_https ' ) == null ))
3333 ||
3434 Config::get ('app.force_https ' )
3535 ) {
Original file line number Diff line number Diff line change 3333 | Application Force HTTPS
3434 |--------------------------------------------------------------------------
3535 |
36- | This ariable force the use of HTTPS in the applucation URL
36+ | This variable force the use of HTTPS in the applucation URL
3737 |
3838 */
3939
You can’t perform that action at this time.
0 commit comments