Index: common.inc =================================================================== --- common.inc (revision 14) +++ common.inc (working copy) @@ -2563,8 +2563,8 @@ */ function drupal_urlencode($text) { if (variable_get('clean_url', '0')) { - return str_replace(array('%2F', '%26', '%23', '//'), - array('/', '%2526', '%2523', '/%252F'), + return str_replace(array('%2F', '%26', '%23', '//', '%2C', '%2B'), + array('/', '%2526', '%2523', '/%252F', ',', '+'), rawurlencode($text)); } else {