diff options
author | icewing <icewing@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2008-05-01 18:59:04 +0000 |
---|---|---|
committer | icewing <icewing@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2008-05-01 18:59:04 +0000 |
commit | d24f9e96ab90a059266f6a6aa77e8688c02ea95f (patch) | |
tree | 6f5c35558845c345ce0d781f1f456f90571adc90 /views/foaf | |
parent | 4d8268188b86730360d268b6d14717c694a2ac07 (diff) | |
download | elgg-d24f9e96ab90a059266f6a6aa77e8688c02ea95f.tar.gz elgg-d24f9e96ab90a059266f6a6aa77e8688c02ea95f.tar.bz2 |
Marcus Povey <marcus@dushka.co.uk>
* FOAF view uses correctly formatted UUID
git-svn-id: https://code.elgg.org/elgg/trunk@619 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'views/foaf')
-rw-r--r-- | views/foaf/export/entity.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/views/foaf/export/entity.php b/views/foaf/export/entity.php index aea0b7855..8fb7558fe 100644 --- a/views/foaf/export/entity.php +++ b/views/foaf/export/entity.php @@ -49,7 +49,7 @@ <foaf:Person> <foaf:name><?php echo $friend->name; ?></foaf:name> <foaf:mbox rdf:resource="<?php echo $friend->email; ?>"/> - <rdfs:seeAlso rdf:resource="<?php echo guid_to_uuid($friend->guid); ?>"/> + <rdfs:seeAlso rdf:resource="<?php echo guid_to_uuid($friend->guid); ?>?view=foaf"/> </foaf:Person> <?php } |