From: Cash Costello Date: Tue, 15 Nov 2011 23:51:45 +0000 (-0500) Subject: Fixes #4090 removes double assignment - thanks to andres.fortier X-Git-Url: https://gitweb.fluxo.info/?a=commitdiff_plain;h=047d2831297ee9d80b7d317c6fe3be217e5944ed;p=lorea%2Felgg.git Fixes #4090 removes double assignment - thanks to andres.fortier --- diff --git a/engine/lib/relationships.php b/engine/lib/relationships.php index 929d3841d..3578f0cb8 100644 --- a/engine/lib/relationships.php +++ b/engine/lib/relationships.php @@ -123,7 +123,7 @@ function check_entity_relationship($guid_one, $relationship, $guid_two) { AND relationship='$relationship' AND guid_two=$guid_two limit 1"; - $row = $row = get_data_row($query); + $row = get_data_row($query); if ($row) { return $row; }