]> gitweb.fluxo.info Git - lorea/elgg.git/commitdiff
Fixed deprecated call to input/pulldown.
authorbrettp <brettp@36083f99-b078-4883-b0ff-0f9b5a30f544>
Fri, 22 Apr 2011 21:15:19 +0000 (21:15 +0000)
committerbrettp <brettp@36083f99-b078-4883-b0ff-0f9b5a30f544>
Fri, 22 Apr 2011 21:15:19 +0000 (21:15 +0000)
git-svn-id: http://code.elgg.org/elgg/trunk@9015 36083f99-b078-4883-b0ff-0f9b5a30f544

views/default/forms/profile/fields/add.php

index c700cf7f59aea331482d4d75eb765ea462b16f9a..7961037e632936364624ca42c8c3050135b7e473 100644 (file)
@@ -9,7 +9,7 @@ $label_text = elgg_echo('profile:label');
 $type_text = elgg_echo('profile:type');
 
 $label_control = elgg_view('input/text', array('name' => 'label'));
-$type_control = elgg_view('input/pulldown', array('name' => 'type', 'options_values' => array(
+$type_control = elgg_view('input/dropdown', array('name' => 'type', 'options_values' => array(
        'text' => elgg_echo('text'),
        'longtext' => elgg_echo('longtext'),
        'tags' => elgg_echo('tags'),