GitBucket
Toggle navigation
Pull requests
Issues
Snippets
Sign in
Files
Branches
1
Releases
2
Issues
14
Pull requests
Labels
Priorities
Milestones
Wiki
Fork
: 0
johnpearcey
/
backup-commander
Browse code
wip
main
v0.9.12
v0.9.11
1 parent
b18984b
commit
88420421bc67be9e8c2134fea8879f768dc30876
John Pearcey DLat
authored
on 10 Dec
Patch
Unified
Split
Showing
2 changed files
+2
-2
■
■
■
■
■
html/inc/secure.php
+0
-1
■
■■■■
html/js/main.js
Ignore Space
Show notes
View
4
■
■
■
■
■
html/inc/secure.php
session_start
();
if
(
isset
(
$_GET
[
'action'
])
&&
$_GET
[
'action'
]==
'logout'
)
{
unset
(
$_SESSION
[
'username'
]
);
include_once
"index.php"
;
//include_once "index.php";
header
(
"Location: index.php"
);
exit
;
}
if
(
isset
(
$_SESSION
[
'username'
])
&&
strlen
(
$_SESSION
[
'username'
])>=
4
){
Ignore Space
Show notes
View
1
■
■■■■
html/js/main.js
}
return
;
}
let elem
=
document
.
getElementById
(
'page_content'
);
[
page_type
,
elem
.
innerHTML
]
=
data
[
1
];
console
.
log
(
'navigate_page page_type: '
,
page_type
);
Show line notes below