diff options
author | Dries Buytaert <dries@buytaert.net> | 2010-04-30 12:53:47 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2010-04-30 12:53:47 +0000 |
commit | 5f98fb812bce1fcdf9b14bda17ce70fe0e0a3cc4 (patch) | |
tree | 068bb51b16ccb32564c4800bec0140f61d2e15e8 /includes/common.inc | |
parent | 7d83f7c89341d53d0ebf8e1cea69513b850fe1ec (diff) | |
download | brdo-5f98fb812bce1fcdf9b14bda17ce70fe0e0a3cc4.tar.gz brdo-5f98fb812bce1fcdf9b14bda17ce70fe0e0a3cc4.tar.bz2 |
- Patch #555830 by sun, effulgentsia, mgifford, TheRec, aspilicious: clean up theme_image() to use drupal_attributes() for all attributes and revisit defaults for 'alt' and 'title'.
Diffstat (limited to 'includes/common.inc')
-rw-r--r-- | includes/common.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/includes/common.inc b/includes/common.inc index f67839cdb..95f083b0e 100644 --- a/includes/common.inc +++ b/includes/common.inc @@ -5390,7 +5390,7 @@ function drupal_common_theme() { 'variables' => array('links' => NULL, 'attributes' => array('class' => array('links')), 'heading' => array()), ), 'image' => array( - 'variables' => array('path' => NULL, 'alt' => '', 'title' => '', 'attributes' => array(), 'getsize' => TRUE), + 'variables' => array('path' => NULL, 'alt' => '', 'title' => NULL, 'attributes' => array(), 'getsize' => TRUE), ), 'breadcrumb' => array( 'variables' => array('breadcrumb' => NULL), |