From 6194da096edc908b31ec9fcf23e7d9e2a79e7b73 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alexander=20Nicolaysen=20S=C3=B8rnes?= Date: Sat, 31 Mar 2007 17:25:12 +0000 Subject: [PATCH] Use objectMakeLink() to list maintainers --- include/application.php | 4 +--- include/version.php | 3 +-- 2 files changed, 2 insertions(+), 5 deletions(-) diff --git a/include/application.php b/include/application.php index 17cc2cc..d7e2c15 100644 --- a/include/application.php +++ b/include/application.php @@ -666,9 +666,7 @@ class Application { while(list($index, $userIdValue) = each($other_maintainers)) { $oUser = new User($userIdValue); - echo "
  • $oUser->sRealname (iUserId\">". - "e-mail)
  • \n"; + echo "
  • ".$oUser->objectMakeLink()."
  • \n"; } echo "\n"; } else diff --git a/include/version.php b/include/version.php index 0f9f5dd..7db4bd6 100644 --- a/include/version.php +++ b/include/version.php @@ -764,8 +764,7 @@ class Version { while(list($index, $userIdValue) = each($aMaintainers)) { $oUser = new User($userIdValue); - echo "
  • $oUser->sRealname (iUserId\">e-mail)
  • "; + echo "
  • ".$oUser->objectMakeLink()."
  • "; } echo "\n"; } else