diff options
author | Cash Costello <cash.costello@gmail.com> | 2009-03-28 16:31:12 +0000 |
---|---|---|
committer | Cash Costello <cash.costello@gmail.com> | 2009-03-28 16:31:12 +0000 |
commit | 5ef1dd4c79fd5413a1983a4faf96cf3a44c024ba (patch) | |
tree | 42582d4537114a9a228bf6c4d79286ebd4610812 /index.php | |
parent | a9010a793da35f76d01edbca97ec40079cc0a9e2 (diff) | |
download | elgg-5ef1dd4c79fd5413a1983a4faf96cf3a44c024ba.tar.gz elgg-5ef1dd4c79fd5413a1983a4faf96cf3a44c024ba.tar.bz2 |
removed unnecessary quotes
Diffstat (limited to 'index.php')
-rw-r--r-- | index.php | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -32,7 +32,7 @@ }
//set the title
- $title = sprintf(elgg_echo('album:user'), "$owner->name");
+ $title = sprintf(elgg_echo('album:user'), $owner->name);
$area2 = elgg_view_title($title);
// Get objects
|