From f46a6287b760579b42b30efb1f14adadd9493dcc Mon Sep 17 00:00:00 2001
From: Capi Etheriel <barraponto@gmail.com>
Date: Tue, 31 Jan 2012 14:39:40 -0200
Subject: [PATCH] Issue #1423088 by barraponto: variable consistency in
 template.php

---
 template.php |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/template.php b/template.php
index ed1f3fa..fb57fc5 100644
--- a/template.php
+++ b/template.php
@@ -238,8 +238,8 @@ function tao_preprocess_field(&$vars) {
  * Override of theme('textarea').
  * Deprecate misc/textarea.js in favor of using the 'resize' CSS3 property.
  */
-function tao_textarea($variables) {
-  $element = $variables['element'];
+function tao_textarea($vars) {
+  $element = $vars['element'];
   $element['#attributes']['name'] = $element['#name'];
   $element['#attributes']['id'] = $element['#id'];
   $element['#attributes']['cols'] = $element['#cols'];
-- 
1.7.5.4

