Anonymous - 2003-10-05

Hiya,

In version 2.51.2, when I want to make a change on a person, the edit box shows up but there the text "Close window" doesn't work. When I click it nothing happens. I solved it by changing line 330 in file gdbi_interface.php.
From:
print "<a href=\"#\" onclick=\"window.opener.showchanges(); window.close();\">".$pgv_lang["close_window"]."</a><br></center>\n";

To:
print "<a href=\"#\" onclick=\"window.close();\">".$pgv_lang["close_window"]."</a><br></center>\n";

In other words by removing: "window.opener.showchanges();

Not sure what that window.opener is supposed to do but googling didn't really give me anything. (Java noob :))

Roland