jrPoll embed and jrUpimg_allowed
Jamroom Developers
Ok, thanks Michael and Brian.

I’ve got a few notes on things I’ve noticed looking through code and validation. None of them are important or cause errors (apart from validation) so I’ll post them here rather than creating separate threads (unless you really want separate threads):
———————
In each of the the section templates, if there is no title entered <a id=""></a> is printed in the html which causes a validation error.
This can be fixed with a check:
{if $doc_title_url}<a id="{$doc_title_url}"></a>{/if}
———————
In item_category_index.tpl
{jrCore_lang module="jrDocs" id="53" default="Documentation" assign="lang_documentaton"}
{jrCore_page_title title="`$lang_documentaton` - `$category` - `$profile_name`"}
———————
jrDocs_item_index_order_button
we get alt="" on an a tag, fails validation
———————
And a typo in jrEmbed
The language string in en-US.php is
$lang[1] = 'Embed this Media';
<title>{jrCore_lang module="jrEmbed" id="1" default="Insert Media"}</title>
———————
Also, I’m wondering if jrBlog may be missing a quota.php file - it was there as a stub until jrBlog-release-1.0.10 but hasn’t appeared in the past 3 releases. Maybe other code has changed and a quota.php stub is no longer needed?
———————