Module: nagvis Branch: master Commit: 4659cb633d04eddc898387e2a603325cc3769be3 URL: http://nagvis.git.sourceforge.net/git/gitweb.cgi?p=nagvis/nagvis/commit/?id=4659cb633d04eddc898387e2a603325cc3769be3
Author: Roman Kyrylych <[email protected]> Date: Tue Aug 18 18:10:30 2009 +0300 gmap: Fixed calling removeNode of wrong class Signed-off-by: Roman Kyrylych <[email protected]> --- share/netmap/Link.php | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/share/netmap/Link.php b/share/netmap/Link.php index 9cab11d..0059fe3 100644 --- a/share/netmap/Link.php +++ b/share/netmap/Link.php @@ -217,7 +217,7 @@ class Link if (($xml = @simplexml_load_file('links.xml')) === FALSE) throw new Exception('Could not read links.xml'); - Location::removeNode($xml, $id1, $id2); + Link::removeNode($xml, $id1, $id2); if (file_put_contents('links.xml', $xml->asXML()) !== FALSE) return true; ------------------------------------------------------------------------------ Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day trial. Simplify your report design, integration and deployment - and focus on what you do best, core application coding. Discover what's new with Crystal Reports now. http://p.sf.net/sfu/bobj-july _______________________________________________ Nagvis-checkins mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/nagvis-checkins
