Bonjour, pour continuer sur mon post précedent
celui ci, je suis a nouveau confronté à un autre problème ...
Après avoir cocher mes "Options de notification " je me rend sur la page Notification (
http://monsite/notifications.php) et là impossible de supprimer mes "Notifications actives" .. quand je fait ma selection des options à supprimer, puis supprimer j'ai la page "Retour là où vous étiez... "
P.S : je signale que si j'utilise le contenu du fichier template "system_notification_select.html" du theme default j'ai le même pb
Le contenu du fichier template "system_notification_select.html" du theme X2t est le suivant :
<script type="text/javascript">
function hideAll()
{
document.getElementById('notifform').style.display = 'none';
}
function showForm(obj)
{obj.style.display = 'block';
}
</script>
<br />
<span style="background-color: #E9E9E9;border:1px solid #C0C0C0;">
<{$lang_notificationoptions}>
<a href="java script:;" onclick="hideAll();showForm(document.getElementById('notifform'));"><img src="<{$xoops_imageurl}>down.gif" width="15" height="9" alt="" border="0" /></a> /
<a href="java script:;" onclick="hideAll();"><img src="<{$xoops_imageurl}>up.gif" width="15" height="9" alt="" border="0" /></a>
</span>
<{if $xoops_notification.show}>
<form id="notifform" name="notification_select" action="<{$xoops_notification.target_page}>" method="post">
<h4 style="text-align:center;"><{$lang_activenotifications}></h4>
<input type="hidden" name="not_redirect" value="<{$xoops_notification.redirect_script}>" />
<input type="hidden" name="XOOPS_TOKEN_REQUEST" value="<{php}>echo $GLOBALS['xoopsSecurity']->createToken();<{/php}>" />
<table class="outer">
<tr><th colspan="3"><{$lang_notificationoptions}></th></tr>
<tr>
<td class="head"><{$lang_category}></td>
<td class="head"><input name="allbox" id="allbox" onclick="xoopsCheckAll('notification_select','allbox');" type="checkbox" class="checkbox" value="<{$lang_checkall}>" /></td>
<td class="head"><{$lang_events}></td>
</tr>
<{foreach name=outer item=category from=$xoops_notification.categories}>
<{foreach name=inner item=event from=$category.events}>
<tr>
<{if $smarty.foreach.inner.first}>
<td class="even" rowspan="<{$smarty.foreach.inner.total}>"><{$category.title}></td>
<{/if}>
<td class="odd">
<{counter assign=index}>
<input type="hidden" name="not_list[<{$index}>][params]" value="<{$category.name}>,<{$category.itemid}>,<{$event.name}>" />
<input type="checkbox" class="checkbox" id="not_list[]" name="not_list[<{$index}>][status]" value="1" <{if $event.subscribed}>checked="checked"<{/if}> />
</td>
<td class="odd"><{$event.caption}></td>
</tr>
<{/foreach}>
<{/foreach}>
<tr>
<td class="foot" colspan="3" align="center"><input type="submit" class="button" name="not_submit" value="<{$lang_updatenow}>"/></td>
</tr>
</table>
<div align="center">
<{$lang_notificationmethodis}>: <{$user_method}> [<a href="<{$editprofile_url}>"><{$lang_change}></a>]
</div>
</form>
<{/if}>