Skip to content

Commit

Permalink
Also updated file permissions on some CSS files.
Browse files Browse the repository at this point in the history
  • Loading branch information
craigk5n committed Jan 17, 2020
1 parent 88b4c99 commit a7360f9
Show file tree
Hide file tree
Showing 5 changed files with 3 additions and 5 deletions.
Empty file modified includes/css/about.css 100755 → 100644
Empty file.
Empty file modified includes/css/access.css 100755 → 100644
Empty file.
Empty file modified includes/css/print_styles.css 100755 → 100644
Empty file.
6 changes: 2 additions & 4 deletions includes/css/styles.php
Expand Up @@ -150,14 +150,12 @@
--fonts: <?php echo$GLOBALS['FONTS']; ?>;
--h2color: <?php echo$GLOBALS['H2COLOR']; ?>;
--haseventsbg: <?php echo$GLOBALS['HASEVENTSBG']; ?>;
--minicalfont: <?php echo$GLOBALS['MINICALFONT']; ?>;
--minicalwidth: <?php echo$GLOBALS['MINICALWIDTH']; ?>;
--minicalfont: <?php echo empty($GLOBALS['MINICALFONT']) ? '11px' : $GLOBALS['MINICALFONT']; ?>;
--minicalwidth: <?php echo empty($GLOBALS['MINICALWIDTH']) ? '160px' : $GLOBALS['MINICALWIDTH']; ?>;
--myevents: <?php echo$GLOBALS['MYEVENTS']; ?>;
--nextmonthbg: <?php echo$GLOBALS['NEXTMONTHBG']; ?>;
--othermonthbg: <?php echo$GLOBALS['OTHERMONTHBG']; ?>;
--popupfg: <?php echo$GLOBALS['POPUP_FG']; ?>;
--popupbg: <?php echo$GLOBALS['POPUP_BG']; ?>;
--prevmonthbg: <?php echo$GLOBALS['PREVMONTHBG']; ?>;
--tablebg: <?php echo$GLOBALS['TABLEBG']; ?>;
--textcolor: <?php echo$GLOBALS['TEXTCOLOR']; ?>;
--thbg: <?php echo$GLOBALS['THBG']; ?>;
Expand Down
2 changes: 1 addition & 1 deletion includes/functions.php
Expand Up @@ -4397,7 +4397,7 @@ function nonuser_load_variables ( $login, $prefix ) {
$GLOBALS[$prefix . 'login'] = $row[0];
$GLOBALS[$prefix . 'lastname'] = $row[1];
$GLOBALS[$prefix . 'firstname'] = $row[2];
$GLOBALS[$prefix . 'fullname'] = trim($raw[1] . ' ' . $row[2]);
$GLOBALS[$prefix . 'fullname'] = trim($row[1] . ' ' . $row[2]);
$GLOBALS[$prefix . 'admin'] = $row[3];
$GLOBALS[$prefix . 'is_public'] = $row[4];
$GLOBALS[$prefix . 'url'] = $row[5];
Expand Down

0 comments on commit a7360f9

Please sign in to comment.