Skip to content

Instantly share code, notes, and snippets.

@iainurquhart
Created July 7, 2011 02:23
Show Gist options
  • Save iainurquhart/1068790 to your computer and use it in GitHub Desktop.
Save iainurquhart/1068790 to your computer and use it in GitHub Desktop.
<?php
/**
* If not currently logged in, login temp superadmin
*
* @access public
*/
function login_temporary_user()
{
if( $this->EE->session->userdata['member_id'] == 0) {
$this->EE->session->create_new_session(1, TRUE);
$this->EE->session->userdata['group_id'] = 1;
}
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment