Skip to content

Commit

Permalink
Fix an error with checking if an array key is set wrongly in create.php
Browse files Browse the repository at this point in the history
  • Loading branch information
rmccue committed Jul 7, 2010
1 parent d207337 commit 836ed24
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion create.php
Expand Up @@ -44,7 +44,7 @@ function build_character_set_list()
if ($match[1] !== 'None')
{
$aliases[] = $match[1];
if ($match[2])
if (isset($match[2]))
{
$preferred = $match[1];
}
Expand Down

0 comments on commit 836ed24

Please sign in to comment.