Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
mahara
mahara
Commits
0c7eb91b
Commit
0c7eb91b
authored
Nov 25, 2011
by
Francois Marier
Committed by
Gerrit Code Review
Nov 25, 2011
Browse files
Merge "Fix error when adding text box to site page"
parents
28e6a2b5
53b65a3a
Changes
1
Hide whitespace changes
Inline
Side-by-side
htdocs/artefact/lib.php
View file @
0c7eb91b
...
@@ -1644,7 +1644,10 @@ function artefact_get_owner_info($ids) {
...
@@ -1644,7 +1644,10 @@ function artefact_get_owner_info($ids) {
$name
=
display_name
(
$d
);
$name
=
display_name
(
$d
);
$url
=
'user/view.php?id='
.
$d
->
id
;
$url
=
'user/view.php?id='
.
$d
->
id
;
}
}
$d
=
(
object
)
array
(
'name'
=>
$name
,
'url'
=>
$wwwroot
.
$url
);
$d
=
(
object
)
array
(
'name'
=>
$name
);
if
(
!
empty
(
$url
))
{
$d
->
url
=
$wwwroot
.
$url
;
}
}
}
return
$data
;
return
$data
;
}
}
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment