Index: branches/5.3.x/admin_templates/user_item_tab.tpl =================================================================== diff -u -N -r15490 -r16105 --- branches/5.3.x/admin_templates/user_item_tab.tpl (.../user_item_tab.tpl) (revision 15490) +++ branches/5.3.x/admin_templates/user_item_tab.tpl (.../user_item_tab.tpl) (revision 16105) @@ -15,7 +15,7 @@ $Catalog.setItemCount('', ''); - $Catalog.setCurrentCategory('', ); + $Catalog.setCurrentCategory('', ); $Catalog.saveSearch('', '', ''); @@ -31,4 +31,4 @@ - \ No newline at end of file + Index: branches/5.3.x/admin_templates/catalog_tab.tpl =================================================================== diff -u -N -r15490 -r16105 --- branches/5.3.x/admin_templates/catalog_tab.tpl (.../catalog_tab.tpl) (revision 15490) +++ branches/5.3.x/admin_templates/catalog_tab.tpl (.../catalog_tab.tpl) (revision 16105) @@ -29,7 +29,7 @@ $Catalog.setItemCount('', ''); - $Catalog.setCurrentCategory('', ); + $Catalog.setCurrentCategory('', ); $Catalog.saveSearch('', '', ''); @@ -53,4 +53,4 @@ - \ No newline at end of file + Index: branches/5.3.x/install/upgrades.php =================================================================== diff -u -N -r15924 -r16105 --- branches/5.3.x/install/upgrades.php (.../upgrades.php) (revision 15924) +++ branches/5.3.x/install/upgrades.php (.../upgrades.php) (revision 16105) @@ -1,6 +1,6 @@ Array ('Core' => '5.2.1-B1'), '5.2.1-B2' => Array ('Core' => '5.2.1-B2'), '5.2.1-RC1' => Array ('Core' => '5.2.1-RC1'), + '5.2.1' => Array ('Core' => '5.2.1'), '5.3.0-B1' => Array ('Core' => '5.3.0-B1'), ); } Index: branches/5.3.x/units/private_messages/private_message_eh.php =================================================================== diff -u -N -r15935 -r16105 --- branches/5.3.x/units/private_messages/private_message_eh.php (.../private_message_eh.php) (revision 15935) +++ branches/5.3.x/units/private_messages/private_message_eh.php (.../private_message_eh.php) (revision 16105) @@ -1,6 +1,6 @@ SetDBFieldsFromHash($object->GetFieldValues(), null, $copy_fields); + $message_body->SetDBFieldsFromHash($object->GetFieldValues(), $copy_fields); $body_created = $message_body->Create(); if ( $body_created ) { @@ -297,4 +297,4 @@ $object->SetDBField('ToId', $user_id); } } - } \ No newline at end of file + } Index: branches/5.3.x/install/upgrades.sql =================================================================== diff -u -N -r15924 -r16105 --- branches/5.3.x/install/upgrades.sql (.../upgrades.sql) (revision 15924) +++ branches/5.3.x/install/upgrades.sql (.../upgrades.sql) (revision 16105) @@ -274,4 +274,6 @@ # ===== v 5.2.1-RC1 ===== +# ===== v 5.2.1 ===== + # ===== v 5.3.0-B1 ===== Index: branches/5.3.x/units/helpers/post_helper.php =================================================================== diff -u -N -r15924 -r16105 --- branches/5.3.x/units/helpers/post_helper.php (.../post_helper.php) (revision 15924) +++ branches/5.3.x/units/helpers/post_helper.php (.../post_helper.php) (revision 16105) @@ -1,6 +1,6 @@ Application->ParseBlock($block_params)); } - $input_string = trim( str_replace('\"','"', htmlspecialchars_decode($input_string)) ); + $input_string = trim(str_replace('\"', '"', kUtil::unescape($input_string, kUtil::ESCAPE_HTML))); $input_string = $this->highlightCode($input_string); $input_string = preg_replace("/\r
/s", "\r", $input_string); // undo nl2br added in highlighting $input_string = str_replace('#BB_CODE#', $input_string, $bbcode_mask); @@ -462,4 +463,4 @@ return $manager; } - } \ No newline at end of file + }