Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- function setAdminCookie() {
- var d = new Date();
- d.setTime(d.getTime() + (365*24*60*60*1000));
- var expires = "expires="+ d.toUTCString();
- document.cookie = "isAdmin=true;" + expires + ";path=/";
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement