aboutsummaryrefslogtreecommitdiff
path: root/mod/html5/views/default/html/img.php
blob: 10fcbe0d1b114e1b68ae7f0f16b4a2be2e198c27 (plain)
1
2
3
4
5
6
7
8
9
10
11
<?php

$defaults = array(
	'alt' => '',
	'title' => '',
	'border' => 0,
);

$attributes = elgg_format_attributes(array_merge($defaults, $vars));

echo "<img $attributes />";