git-svn-id: https://svn.code.sf.net/p/squirrelmail/code/trunk/squirrelmail@9637
7612ce4b-ef26-0410-bec9-
ea0150e637f0
- Security: fix several cross site scripting (XSS) attacks. Thanks go to
Martijn Brinkers for finding a lot of these. [CAN-2005-1769]
- Update COPYING with new address of the FSF.
+ - Fixed missing quote character when trying to build cid: urls.
Version 1.5.0 - 2 February 2004
-------------------------------
* If we couldn't generate a proper img url, drop in a blank image
* instead of sending back empty, otherwise it causes unusual behaviour
*/
- $httpurl = $quotchar . SM_PATH . 'images/blank.png';
+ $httpurl = $quotchar . SM_PATH . 'images/blank.png' . $quotchar;
}
return $httpurl;
} // end fn SendDownloadHeaders
-?>
\ No newline at end of file
+?>