diff --git a/out/out.EditUserData.php b/out/out.EditUserData.php
index 257d3344c..7c1678681 100644
--- a/out/out.EditUserData.php
+++ b/out/out.EditUserData.php
@@ -96,7 +96,7 @@ if ($settings->_enableUserImage){
hasImage())
- print " getImageURL()."\">";
+ print " _httpRoot . "out/out.UserImage.php?userid=".$user->getId()."\">";
else printMLText("no_user_image");
?>
|
diff --git a/out/out.MyAccount.php b/out/out.MyAccount.php
index 8c97f32aa..7803ea2b3 100644
--- a/out/out.MyAccount.php
+++ b/out/out.MyAccount.php
@@ -41,7 +41,7 @@ print "\n";
if ($settings->_enableUserImage){
print "\n";
- print "".($user->hasImage() ? " getImageURL()."\">" : getMLText("no_user_image"))." | \n";
+ print "".($user->hasImage() ? " _httpRoot . "out/out.UserImage.php?userid=".$user->getId()."\">" : getMLText("no_user_image"))." | \n";
print "
\n";
}
diff --git a/out/out.UserList.php b/out/out.UserList.php
index 14f7d494c..6366a2076 100644
--- a/out/out.UserList.php
+++ b/out/out.UserList.php
@@ -83,7 +83,7 @@ for ($i = 0; $i < count($users); $i++) {
hasImage())
- print " getImageURL()."\">";
+ print " _httpRoot . "out/out.UserImage.php?userid=".$currUser->getId()."\">";
else
printMLText("no_user_image");
?>
diff --git a/out/out.UsrMgr.php b/out/out.UsrMgr.php
index fead41f03..d1bbd6d10 100644
--- a/out/out.UsrMgr.php
+++ b/out/out.UsrMgr.php
@@ -287,7 +287,7 @@ UI::contentContainerStart();
|
hasImage())
- print " getImageURL()."\">";
+ print " _httpRoot . "out/out.UserImage.php?userid=".$currUser->getId()."\">";
else
printMLText("no_user_image");
?>
diff --git a/out/out.UsrView.php b/out/out.UsrView.php
index 6161c8ed4..4e0a50112 100644
--- a/out/out.UsrView.php
+++ b/out/out.UsrView.php
@@ -70,7 +70,7 @@ foreach ($users as $currUser) {
if ($settings->_enableUserImage){
print " | ";
- if ($currUser->hasImage()) print " getImageURL()."\">";
+ if ($currUser->hasImage()) print " _httpRoot . "out/out.UserImage.php?userid=".$currUser->getId()."\">";
else printMLText("no_user_image");
print " | ";
}