Skip to content

Commit

Permalink
#5123 - Minor fix to previous commit
Browse files Browse the repository at this point in the history
  • Loading branch information
Moc committed Nov 30, 2023
1 parent 3ad27cd commit 27a4887
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion e107_plugins/faqs/faqs_shortcodes.php
Original file line number Diff line number Diff line change
Expand Up @@ -337,7 +337,7 @@ function sc_faq_submit_question($parms=null)
{
$text .= $frm->open('faq-ask-question','post');
//TODO LAN ie. [x] character limit.
$text .= "<div>".$frm->textarea('ask_a_question','',3, 80 ,array('required' => true, 'maxlength' => $this->questionCharLimit, 'minlength' => $this->questionCharMinLimit, 'size' =>'xxlarge', 'placeholder' =>LAN_FAQS_012, 'wrap' =>'soft'))."
$text .= "<div>".$frm->textarea('ask_a_question','',3, 80 ,array('required' => true, 'maxlength' => $this->questionCharLimit, 'minlength' => $this->questionCharMin, 'size' =>'xxlarge', 'placeholder' =>LAN_FAQS_012, 'wrap' =>'soft'))."
<div class='faq-char-limit'><small>".$this->questionCharLimit." ".LAN_FAQS_013."</small></div>".$frm->submit('submit_a_question',LAN_SUBMIT)."</div>";

$text .= $frm->close();
Expand Down

0 comments on commit 27a4887

Please sign in to comment.