Skip to content

Commit

Permalink
Merge pull request #28 from v1r0x/empty-desc
Browse files Browse the repository at this point in the history
fix textarea creation
  • Loading branch information
v1r0x committed Mar 14, 2016
2 parents 8089a99 + eaf5edd commit 6f305b5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion templates/create.tmpl.php
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@
<label for="text_title" class="label_h1 input_title"><?php p($l->t('Title')); ?></label>
<input type="text" class="input_field" id="pollTitle" name="pollTitle" value="<?php if(isset($title)) p($title); ?>" />
<label for="pollDesc" class="label_h1 input_title"><?php p($l->t('Description')); ?></label>
<textarea cols="50" rows="5" style="width: auto;" class="input_field" id="pollDesc" name="pollDesc" value="<?php if(isset($desc)) p($desc); ?>"></textarea>
<textarea cols="50" rows="5" style="width: auto;" class="input_field" id="pollDesc" name="pollDesc"><?php if(isset($desc)) p($desc); ?></textarea>

<div class="input_title"><?php p($l->t('Access')); ?></div>

Expand Down

0 comments on commit 6f305b5

Please sign in to comment.