diff options
author | Friendika <info@friendika.com> | 2011-03-29 17:19:12 -0700 |
---|---|---|
committer | Friendika <info@friendika.com> | 2011-03-29 17:19:12 -0700 |
commit | f1db34eebcef28cb0748931153926374f6442be6 (patch) | |
tree | 5ea7c9053b1cd6f7ee7166eec70a6caee81a27b6 /mod/profile_photo.php | |
parent | e1fd2ecb16a212c56567ac5c5910d2a2d9754b47 (diff) | |
download | volse-hubzilla-f1db34eebcef28cb0748931153926374f6442be6.tar.gz volse-hubzilla-f1db34eebcef28cb0748931153926374f6442be6.tar.bz2 volse-hubzilla-f1db34eebcef28cb0748931153926374f6442be6.zip |
more templates gone
Diffstat (limited to 'mod/profile_photo.php')
-rw-r--r-- | mod/profile_photo.php | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/mod/profile_photo.php b/mod/profile_photo.php index 68c05625b..48805fbdd 100644 --- a/mod/profile_photo.php +++ b/mod/profile_photo.php @@ -196,9 +196,11 @@ function profile_photo_content(&$a) { $o .= replace_macros($tpl,array( '$filename' => $filename, '$resource' => $a->config['imagecrop'] . '-' . $a->config['imagecrop_resolution'], - '$image_url' => $a->get_baseurl() . '/photo/' . $filename - )); - + '$image_url' => $a->get_baseurl() . '/photo/' . $filename, + '$title' => t('Crop Image'), + '$desc' => t('Please adjust the image cropping for optimum viewing.'), + '$done' => t('Done Editing') + )); return $o; } |