Skip to content

Commit

Permalink
Replace utf8_strtoupper by mb_strtoupper
Browse files Browse the repository at this point in the history
Issue #23214
  • Loading branch information
atrol committed Mar 4, 2018
1 parent 322accc commit 27090d4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion manage_tags_page.php
Expand Up @@ -55,7 +55,7 @@
compress_enable();

$t_can_edit = access_has_global_level( config_get( 'tag_edit_threshold' ) );
$f_filter = utf8_strtoupper( gpc_get_string( 'filter', config_get( 'default_manage_tag_prefix' ) ) );
$f_filter = mb_strtoupper( gpc_get_string( 'filter', config_get( 'default_manage_tag_prefix' ) ) );
$f_page_number = gpc_get_int( 'page_number', 1 );

# Start Index Menu
Expand Down
2 changes: 1 addition & 1 deletion manage_user_page.php
Expand Up @@ -61,7 +61,7 @@
$t_lock_image = '<i class="fa fa-lock fa-lg" alt="' . lang_get( 'protected' ) . '" />';

$f_save = gpc_get_bool( 'save' );
$f_filter = utf8_strtoupper( gpc_get_string( 'filter', config_get( 'default_manage_user_prefix' ) ) );
$f_filter = mb_strtoupper( gpc_get_string( 'filter', config_get( 'default_manage_user_prefix' ) ) );
$f_page_number = gpc_get_int( 'page_number', 1 );

if( !$f_save && !is_blank( gpc_get_cookie( $t_cookie_name, '' ) ) ) {
Expand Down

0 comments on commit 27090d4

Please sign in to comment.