Post Dialog broken
-
Post Markdown File Path dialog broken. You have two radial buttons. The text option woks. But, the first option for URL import is broken as there is nowhere to enter the URL. You can see it spits out HTML in the dialog, suggesting an HTML syntax error.
Mode value=”url” checked> URL > Text
When I view source in the browser, you can see that your PHP to set the value is not being processed.
<td>
<label>
<input class=”js-mode-button” type=”radio” name=”mytory_md_mode”
<?= $md_mode == ‘url’ ? ‘checked’ : ” ?> value=”url” checked> URL
</label>
<label>
<input class=”js-mode-button” type=”radio” name=”mytory_md_mode” value=”text”
<?= $md_mode == ‘text’ ? ‘checked’ : ” ?>> Text
</label>
</td>
- The topic ‘Post Dialog broken’ is closed to new replies.