Fixed bug "show news for current project only" / #4402

Hi,

I just wanted to let you know that there's a little bug in the code mentioned above! It gets ALL tasks defined as news from db but actually we just want to have the news for the current project.

from pages/custom_projView.inc.php

    #--- news -----------------------------------------------------------
    {
// 20070314 AHE: Fixed bug "show only news for current project"
// OLD CODE
//        if($news= Task::getAll(array(
// NEW CODE
        if($news= $project->getTasks(array(
            'category'  => TCATEGORY_DOCU,
            'label'     => 1,
            'order_by'  => 'created DESC',
        ))) {

Greets,