You are here

function notifications_page_check_confirmation in Notifications 6.4

Same name and namespace in other branches
  1. 7 notifications.pages.inc \notifications_page_check_confirmation()

Check URL is signed and it doesn't need confirmation

2 calls to notifications_page_check_confirmation()
notifications_page_subscribe in ./notifications.pages.inc
Menu callback add subscription
notifications_page_unsubscribe in ./notifications.pages.inc
Menu callback for unsubscribe page

File

./notifications.pages.inc, line 244
User pages for Notifications

Code

function notifications_page_check_confirmation() {
  return !empty($_GET['confirm']) && notifications_page_check_signature();
}