Skip to content

Instantly share code, notes, and snippets.

@kamituel
Created March 18, 2013 12:01
Show Gist options
  • Save kamituel/5186712 to your computer and use it in GitHub Desktop.
Save kamituel/5186712 to your computer and use it in GitHub Desktop.
Mozilla Persona's IdP impl helper file.
function activeSessionFor(email) {
<?php
if ( isset($_SESSION['email']) && strlen($_SESSION['email']) > 0 ) {
echo "return true;";
} else {
echo "return false;";
}
?>
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment