diff options
Diffstat (limited to 'views/default')
-rw-r--r-- | views/default/html/img.php | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/views/default/html/img.php b/views/default/html/img.php new file mode 100644 index 000000000..3560e066e --- /dev/null +++ b/views/default/html/img.php @@ -0,0 +1,13 @@ +<?php + +$defaults = array( + 'alt' => '', + 'title' => '', +); + +$overrides = array( + 'tag' => 'img', + 'body' => NULL, +); + +echo elgg_view('html/tag', array_merge($defaults, $vars, $overrides));
\ No newline at end of file |