+2009-02-28 Benjamin Mack <benni@typo3.org>
+
+ * Fixed bug #4367: Reset recs with clear_all should reset as array, not as string (Thanks to Christian Kuhn)
+
2009-02-27 Jeff Segars <jeff@webempoweredchurch.org>
* Fixed bug #10372: Clean up frontend editing actions
// Storing value ONLY if there is a confirmed cookie set (->cookieID), otherwise a shellscript could easily be spamming the fe_sessions table with bogus content and thus bloat the database
if (!$maxSizeOfSessionData || $this->cookieId===$this->id) {
if ($recs['clear_all']) {
- $this->setKey('ses','recs','');
+ $this->setKey('ses', 'recs', array());
}
$change=0;
$recs_array=$this->getKey('ses','recs');