<?xml version="1.0" encoding="UTF-8"?> 
<?xml-stylesheet href="https://dev.horde.org/themes/horde//default/feed-rss.xsl" type="text/xsl"?> 
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"> 
 <channel> 
  <title>Task modify: Description is not saved if previous value is NULL</title> 
  <pubDate>Thu, 09 Apr 2026 17:31:32 +0000</pubDate> 
  <link>https://bugs.horde.org/ticket/569</link> 
  <atom:link rel="self" type="application/rss+xml" title="Task modify: Description is not saved if previous value is NULL" href="https://bugs.horde.org/ticket/569/rss" /> 
  <description>Task modify: Description is not saved if previous value is NULL</description> 
 
   
   
  <item> 
   <title>The Description is not saved if previous value is NULL.

Thi</title> 
   <description>The Description is not saved if previous value is NULL.

This is due to isset() function using in lib/Driver.php (v 1.22.2.6) in line 177:



if (isset($this-&gt;_tasks[$id]) &amp;&amp; isset($this-&gt;_tasks[$id][strtolower($attribute)])) {



The issue can be resolved by replacing second isset() by array_key_exists()



if (isset($this-&gt;_tasks[$id]) &amp;&amp; array_key_exists(strtolower($attribute), $this-&gt;_tasks[$id])) {



After applying this patch all works fine.

</description> 
   <pubDate>Mon, 13 Sep 2004 10:50:20 +0000</pubDate> 
   <link>https://bugs.horde.org/ticket/569#t2057</link> 
  </item> 
   
  <item> 
   <title>Fixed in RELENG_1 CVS, thanks.</title> 
   <description>Fixed in RELENG_1 CVS, thanks.</description> 
   <pubDate>Tue, 14 Sep 2004 18:39:14 +0000</pubDate> 
   <link>https://bugs.horde.org/ticket/569#t2078</link> 
  </item> 
   
   
 
 </channel> 
</rss> 
