
Thank you for joining this topic again.
But let me explain what exactly is the problem (I reproduced the issue with demo blog).
So to reproduce this issue, please follow these steps:
1. Download Yii (1.1.3 is OK)
2. Open demos/blog/protected/config/main.php and add these lines in "components" section:
'cache'=>array(
'class'=>'CFileCache',
),
3. Open demos/blog/protected/views/layouts/column2.php and add these lines:
if($this->beginCache('somecache', array('duration'=>600)))
{
echo time();
$this->endCache();
}
4. After save both files, open home page and see the timestamp in sidebar, now go to "Comments" link on first blog post - timestamp is different!
Now you can click on index and "Comments" pages to see that we have different cache fragments.. (timestamp is not changed until 600 secs, but in both pages timestamp is different)... which is the issue in my case.

Is this again configurable issue or it's a bug?