User Zahar - Stack Overflowmost recent 30 from stackoverflow.com2009-12-17T17:00:41Zhttp://stackoverflow.com/feeds/user/89412http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1672966/jira-extension-that-adds-rich-text-for-description-field-of-issue1JIRA extension that adds rich text for Description field of issueZahar2009-11-04T10:36:52Z2009-11-04T10:48:19Z
<p>Is there any Jira extension or plugin that adds rich text for Description field, for comments of issue? Something like COnfluence style.</p>
http://stackoverflow.com/questions/742955/whats-wrong-with-my-php-array/743666#7436660Answer by Zahar for What's wrong with my PHP array?Zahar2009-04-13T11:46:05Z2009-04-13T11:46:05Z<pre><code>function directorGen($array)
{
$genreList = array();
foreach($array as $value)
{
$genreList[] = $value;
}
return $genreList;
}
</code></pre>
<p>//later..</p>
<p>directorGen($title->genres());</p>
<p>You will always receive array. Even it is empty. And you not need to check it with is_array() function.</p>
http://stackoverflow.com/questions/77873/filling-pdf-forms-with-php/737488#7374880Answer by Zahar for Filling PDF Forms with PHPZahar2009-04-10T12:30:33Z2009-04-10T12:30:33Z<p>We use <a href="http://www.koders.com/php/fid7E5A44427C2FBD7BBBF6E22770DFB12E1FC8D42D.aspx" rel="nofollow">phppdflib</a> library. </p>
http://stackoverflow.com/questions/1672966/jira-extension-that-adds-rich-text-for-description-field-of-issue/1673022#1673022Comment by Zahar on JIRA extension that adds rich text for Description field of issueZahar2009-11-04T14:26:20Z2009-11-04T14:26:20ZIt's good enough. But what about confluence-like toolbar?