Quote Originally Posted by Design75 View Post
Great tool cindy! I found 1 small error, but maybe it is already fixed in the latest version
In "YOUR_ADMIN\clone_template.php" on line 203 there is an extra "</td>"
PHP Code:
        <td class="spacing"><?php echo zen_draw_form ('choose_template'FILENAME_CLONE_TEMPLATE'''post'); ?>
            <?php echo '<b>' TEXT_TEMPLATE_SOURCE '</b>' zen_draw_pull_down_menu ('template_source'$template_list_dropdown$current_template_dir) . '####<b>' TEXT_NEW_TEMPLATE_NAME '</b>' zen_draw_input_field ('cloned_name') . zen_draw_hidden_field ('copy_template''yes') . '####' zen_image_submit ('button_go.gif'CLONE_TEMPLATE_GO_ALT'onclick="return issueWarnings ();"'); ?></td>
        </form></td>
this should be:
PHP Code:
        <td class="spacing"><?php echo zen_draw_form ('choose_template'FILENAME_CLONE_TEMPLATE'''post'); ?>
            <?php echo '<b>' TEXT_TEMPLATE_SOURCE '</b>' zen_draw_pull_down_menu ('template_source'$template_list_dropdown$current_template_dir) . '####<b>' TEXT_NEW_TEMPLATE_NAME '</b>' zen_draw_input_field ('cloned_name') . zen_draw_hidden_field ('copy_template''yes') . '####' zen_image_submit ('button_go.gif'CLONE_TEMPLATE_GO_ALT'onclick="return issueWarnings ();"'); ?>
        </form></td>
Eek! Thanks, Design75, I'll get that bug noted and corrected in GitHub.