Index: cronjobs/rssimport.php
===================================================================
--- cronjobs/rssimport.php	(revision 22332)
+++ cronjobs/rssimport.php	(working copy)
@@ -151,6 +151,15 @@
         $addCount += importRSSItem( $item, $rssImport, $cli, $channel );
     }
 
+    if ( $addCount > 0 )
+    {
+        $parentContentObjectTreeNode = eZContentObjectTreeNode::fetch( $rssImport->attribute( 'destination_node_id' ) ); // Get parent treenode object
+        if ( $parentContentObjectTreeNode != null )
+        {
+            eZContentCacheManager::clearContentCacheIfNeeded( $parentContentObjectTreeNode->attribute( 'contentobject_id' ) );
+        }  
+    }
+    
     if ( !$isQuiet )
     {
         $cli->output( 'RSSImport '.$rssImport->attribute( 'name' ).': End. '.$addCount.' objects added' );
@@ -180,6 +189,15 @@
         $addCount += importRSSItem( $item, $rssImport, $cli, $channel );
     }
 
+    if ( $addCount > 0 )
+    {
+        $parentContentObjectTreeNode = eZContentObjectTreeNode::fetch( $rssImport->attribute( 'destination_node_id' ) ); // Get parent treenode object
+        if ( $parentContentObjectTreeNode != null )
+        {
+            eZContentCacheManager::clearContentCacheIfNeeded( $parentContentObjectTreeNode->attribute( 'contentobject_id' ) );
+        }
+    }
+    
     if ( !$isQuiet )
     {
         $cli->output( 'RSSImport '.$rssImport->attribute( 'name' ).': End. '.$addCount.' objects added' );
