Fix the delete link for xmpp. Thanks _trine for reporting the issue.

This commit is contained in:
Mark Crane 2013-03-30 16:33:12 +00:00
parent 02b2b9c5ea
commit 3483c7134b
1 changed files with 1 additions and 1 deletions

View File

@ -41,7 +41,7 @@ foreach($profiles_array as $profile){
<a href='xmpp_profile_edit.php?id=<?php echo $profile['xmpp_profile_uuid']; ?>' alt='edit'><?php echo $v_link_label_edit; ?></a>
<?php } ?>
<?php if (permission_exists('xmpp_delete')) { ?>
<a href='xmpp_profile_delete.php?id=<?php echo $profile['xmpp_profile_uuid']; ?>' onclick="return confirm('Do you really want to delete this?')"
<a href='profile_delete.php?id=<?php echo $profile['xmpp_profile_uuid']; ?>' onclick="return confirm('Do you really want to delete this?')"
alt='delete'><?php echo $v_link_label_delete; ?></a>
<?php } ?>
</td>