Skip to content

Commit

Permalink
Too small; make consistent with other calls
Browse files Browse the repository at this point in the history
Signed by Shawn Bulen, [email protected]
  • Loading branch information
sbulen committed Sep 24, 2021
1 parent de79ff0 commit 30d52bd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Sources/ManageMaintenance.php
Original file line number Diff line number Diff line change
Expand Up @@ -843,7 +843,7 @@ function ConvertEntities()
if ($column_name !== $primary_key && strpos($column_value, '&#') !== false)
{
$changes[] = $column_name . ' = {string:changes_' . $column_name . '}';
$insertion_variables['changes_' . $column_name] = preg_replace_callback('~&#(\d{1,5}|x[0-9a-fA-F]{1,4});~', 'fixchardb__callback', $column_value);
$insertion_variables['changes_' . $column_name] = preg_replace_callback('~&#(\d{1,7}|x[0-9a-fA-F]{1,6});~', 'fixchardb__callback', $column_value);
}

$where = array();
Expand Down

0 comments on commit 30d52bd

Please sign in to comment.