Skip to content

Commit

Permalink
update Input.php, forgot a ; on line 59
Browse files Browse the repository at this point in the history
forgot a ; on line 59
  • Loading branch information
Timdebruijn authored May 29, 2020
1 parent d849634 commit c29a471
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/kohana/system/libraries/Input.php
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ public function __construct()
// magic_quotes_runtime is enabled
if (function_exists('get_magic_quotes_runtime'))
{
ini_set('magic_quotes_runtime', 0)
ini_set('magic_quotes_runtime', 0);
Kohana::log('debug', 'Disable magic_quotes_runtime! It is evil and deprecated: http://php.net/magic_quotes');
}

Expand Down

1 comment on commit c29a471

@chrisgerman
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

OMG Thank you lol

Please sign in to comment.