diff options
author | ewinslow <ewinslow@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2010-11-20 06:15:01 +0000 |
---|---|---|
committer | ewinslow <ewinslow@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2010-11-20 06:15:01 +0000 |
commit | 41f2f30040697cadc1d4759c9d2e6689bc26e788 (patch) | |
tree | c8f4062b69d52a46ca4b814808670c17eba8b2bc /engine/lib | |
parent | a8833f0ab81df477c8a19b221a9ae8a90294bdf8 (diff) | |
download | elgg-41f2f30040697cadc1d4759c9d2e6689bc26e788.tar.gz elgg-41f2f30040697cadc1d4759c9d2e6689bc26e788.tar.bz2 |
Doesn't make any sense for elgg_format_attributes to default to an empty array...
git-svn-id: http://code.elgg.org/elgg/trunk@7355 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'engine/lib')
-rw-r--r-- | engine/lib/output.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engine/lib/output.php b/engine/lib/output.php index 61db401a1..8df4bf089 100644 --- a/engine/lib/output.php +++ b/engine/lib/output.php @@ -148,7 +148,7 @@ function elgg_format_url($url) { * * @return string HTML attributes to be inserted into a tag (e.g., <tag $attrs>) */ -function elgg_format_attributes(array $attrs = array()) { +function elgg_format_attributes(array $attrs) { $attrs = elgg_clean_vars($attrs); $attributes = array(); |