Skip to content

Commit

Permalink
Correct constructor name of FilterConverter class
Browse files Browse the repository at this point in the history
Fixes #23765
  • Loading branch information
atrol committed Jan 9, 2018
1 parent 2299fc0 commit b7ec625
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/classes/FilterConverter.class.php
Expand Up @@ -52,7 +52,7 @@ class FilterConverter {
* @param integer $p_user_id The logged in user id.
* @param string $p_lang The logged in user language.
*/
public function __construction( $p_user_id, $p_lang ) {
public function __construct( $p_user_id, $p_lang ) {
$this->user_id = (int)$p_user_id;
$this->lang = $p_lang;
}
Expand Down

0 comments on commit b7ec625

Please sign in to comment.