aboutsummaryrefslogtreecommitdiff
path: root/engine/lib/output.php
diff options
context:
space:
mode:
authorewinslow <ewinslow@36083f99-b078-4883-b0ff-0f9b5a30f544>2010-11-20 06:15:01 +0000
committerewinslow <ewinslow@36083f99-b078-4883-b0ff-0f9b5a30f544>2010-11-20 06:15:01 +0000
commit41f2f30040697cadc1d4759c9d2e6689bc26e788 (patch)
treec8f4062b69d52a46ca4b814808670c17eba8b2bc /engine/lib/output.php
parenta8833f0ab81df477c8a19b221a9ae8a90294bdf8 (diff)
downloadelgg-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/output.php')
-rw-r--r--engine/lib/output.php2
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();