]> code.citadel.org Git - citadel.git/blobdiff - webcit-ng/static/js/main.js
Grammar change in the license declaration.
[citadel.git] / webcit-ng / static / js / main.js
index 96c06b6bb096f81c59319291cf5fa08500fc866c..6af9c1421fc69c99b6ef7c973d75071f4bb1a6ef 100644 (file)
@@ -1,7 +1,7 @@
 // Copyright (c) 2016-2023 by the citadel.org team
 //
 // This program is open source software.  Use, duplication, or
-// disclosure are subject to the GNU General Public License v3.
+// disclosure is subject to the GNU General Public License v3.
 
 
 do_biff = async() => {
@@ -85,10 +85,10 @@ function update_banner() {
        document.getElementById("current_user").innerHTML = current_user ;
 
        if (logged_in) {
-               document.getElementById("lilo").innerHTML = "<a href=\"/ctdl/a/logout\"><i class=\"fa fa-right-from-bracket\"></i>" + _("Log off") + "</a>" ;
+               document.getElementById("lilo").innerHTML = "<a href=\"/ctdl/a/logout\"><i class=\"fa fa-right-from-bracket\"></i>&nbsp;" + _("Log off") + "</a>" ;
        }
        else {
-               document.getElementById("lilo").innerHTML = "<a href=\"javascript:display_login_screen('')\"><i class=\"fa fa-right-to-bracket\"></i>" + _("Log in") + "</a>" ;
+               document.getElementById("lilo").innerHTML = "<a href=\"javascript:display_login_screen('')\"><i class=\"fa fa-right-to-bracket\"></i>&nbsp;" + _("Log in") + "</a>" ;
        }
 }