* [bug] fix base64 bug.

This commit is contained in:
sunguangming
2024-09-30 15:22:43 +08:00
committed by 王怡栋
parent 126491cd21
commit 7a67dd8b82
+1 -1
View File
@@ -144,7 +144,7 @@ foreach($modules as $moduleID => $module)
$assignedToItems = array();
foreach ($memberPairs as $key => $value)
{
$key = base64_encode($key); // 编码用户名中的特殊字符
$key = base64_encode((string)$key); // 编码用户名中的特殊字符
$assignedToItems[] = array('text' => $value, 'innerClass' => 'batch-btn ajax-btn not-open-url', 'data-url' => helper::createLink('bug', 'batchAssignTo', "assignedTo=$key&productID={$product->id}&type=product"));
}