"fixed bug reported on the german list by webmaster-at-kmu-tools.de"

This commit is contained in:
Ralf Becker 2008-03-09 21:14:05 +00:00
parent e6d99f37e9
commit d4a1075c68

View File

@ -67,11 +67,11 @@ class solink
{
return False; // dont link to self or other nosense
}
if ($link = $this->get_link($app1,$id1,$app2,$id2))
if ($link = self::get_link($app1,$id1,$app2,$id2))
{
if ($link['link_remark'] != $remark)
{
$this->update_remark($link['link_id'],$remark);
self::update_remark($link['link_id'],$remark);
}
return $link['link_id']; // link alread exist
}