Zen Follower
- Join Date:
- Dec 2008
- Location:
- Pittsburgh, PA
- Posts:
- 241
- Plugin Contributions:
- 0
Open in new window Admin Delete Categories Link &target="_blank" ? zen_href_link(
So occasionally I blow up my easypopulate.php import and create a bunch of bogus categories by accident that I delete out so I want to have my delete icon open in a new window. I was trying to simply add the &target="_blank" to the link as seen below, but it only loads as &target=
any idea why? I can't seem to escape? the double quote maybe? I tried slashes, concatenating, etc. I think I'm just too much of a n00b.
admin/includes/modules/category_product_listing.php
<?php echo '<a href="' . zen_href_link(FILENAME_CATEGORIES, 'cPath=' . $cPath . '&cID=' . $categories->fields['categories_id'] . '&action=delete_category') . '&target="_blank">' . zen_image(DIR_WS_IMAGES . 'icon_delete.gif', ICON_DELETE) . '</a>'; ?>