Is this a bug of TestLink 1.9.6

Moderators: Amaradana, TurboPT, TL Developers

Locked
fluter
TestLink user
Posts: 2
Joined: Thu Mar 28, 2013 5:51 pm

Is this a bug of TestLink 1.9.6

Post by fluter »

I have tried several days to integrate with Mantis (interface:db) following the configuration example.
The problem is I can not get the bug information at the page of Test Execution.

There are 2 Warning in the testlink log:
1. E_NOTICE Trying to get property of non-object - in /var/www/testlink/lib/functions/exec.inc.php - Line 198
2. E_NOTICE Trying to get property of non-object - in /var/www/testlink/lib/functions/exec.inc.php - Line 199

I Inserted several Logger into "mantisdbInterface.class.php" and "issueTrackerInterface.class.php".
The db connection and SQL result had been proved OK.

Finally, I changed the source code in"mantisdbInterface.class.php" at line 161.

# Beginning of delete
# return "<div title=\"{$title}\" style=\"display: inline; background: $color;\">$linkVerbose->link</div>";
# End of delete
# Beginning of new

$linkVerbose->link = "<div title=\"{$title}\" style=\"display: inline; background: $color;\">$linkVerbose->link</div>";
return $linkVerbose;

# End of new

It is worked after the modificaion.
I am not a php programmer so I'm not sure whether the modificaion is OK or not.

Just for you information.
fman
Member of TestLink Community
Posts: 3123
Joined: Tue Nov 15, 2005 7:19 am

Re: Is this a bug of TestLink 1.9.6

Post by fman »

Explained tons of times => mantis.testlink.org is place to SEARCH FOR and report issues, not the forum
This issue has been solved and will be released on 1.9.7
Locked