]> gitweb.fluxo.info Git - lorea/elgg.git/commitdiff
Fixes #4090 removes double assignment - thanks to andres.fortier
authorCash Costello <cash.costello@gmail.com>
Tue, 15 Nov 2011 23:51:45 +0000 (18:51 -0500)
committercash <cash.costello@gmail.com>
Thu, 17 Nov 2011 00:53:04 +0000 (19:53 -0500)
engine/lib/relationships.php

index 929d3841d8dca53c830be6ab697d7b2550d627f9..3578f0cb8db3cdd48273a49914c939bc793a8498 100644 (file)
@@ -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;
        }