Browse Source

Fix #65

pull/69/head
Jaussoin Timothée 10 years ago
parent
commit
7b779d85d7
  1. 4
      lib/XMPPtoForm.php

4
lib/XMPPtoForm.php

@ -199,6 +199,10 @@ class XMPPtoForm{
$textarea->nodeValue .= $value . "\n";
}
}
if(empty($textarea->nodeValue)) {
$textarea->nodeValue = ' ';
}
$container->appendChild($textarea);

Loading…
Cancel
Save