diff --git a/webif/html/browse/enc.jim b/webif/html/browse/enc.jim index 8869aa5..11877f6 100755 --- a/webif/html/browse/enc.jim +++ b/webif/html/browse/enc.jim @@ -7,7 +7,6 @@ require ts.class httpheader set file [cgi_get file] -set ts [ts fetch $file] if {[set ts [ts fetch $file]] != 0} { set action enc if {[$ts flag "Encrypted"]} { set action unenc } diff --git a/webif/html/browse/lock.jim b/webif/html/browse/lock.jim index 021de4b..37da1f6 100755 --- a/webif/html/browse/lock.jim +++ b/webif/html/browse/lock.jim @@ -7,7 +7,6 @@ require ts.class httpheader set file [cgi_get file ""] -set ts [ts fetch $file] if {[set ts [ts fetch $file]] != 0} { set action lock if {[$ts flag "Locked"]} { set action unlock } diff --git a/webif/html/browse/new.jim b/webif/html/browse/new.jim index ec0fbf0..047f5d2 100755 --- a/webif/html/browse/new.jim +++ b/webif/html/browse/new.jim @@ -7,7 +7,6 @@ require ts.class httpheader set file [cgi_get file] -set ts [ts fetch $file] if {[set ts [ts fetch $file]] != 0} { set action new if {[$ts flag "New"]} { set action watched }