From c1f73e6600561a3f15d805594709e2637af1eb4a Mon Sep 17 00:00:00 2001 From: Alex Pott Date: Tue, 23 Jul 2013 00:28:12 +0100 Subject: [PATCH] Issue #2026319 by pplantinga: Fixed Mis-named variables in picture_theme(). --- core/modules/picture/picture.module | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/core/modules/picture/picture.module b/core/modules/picture/picture.module index 6863bfb58af..b4c11f351a5 100644 --- a/core/modules/picture/picture.module +++ b/core/modules/picture/picture.module @@ -124,7 +124,7 @@ function picture_theme() { 'picture' => array( 'variables' => array( 'style_name' => NULL, - 'path' => NULL, + 'uri' => NULL, 'width' => NULL, 'height' => NULL, 'alt' => '', @@ -145,7 +145,7 @@ function picture_theme() { 'variables' => array( 'src' => NULL, 'srcset' => NULL, - 'dimension' => NULL, + 'dimensions' => NULL, 'media' => NULL, ), ),