[TikiWiki-commits] [Git][tikiwiki/tiki][master] [FIX] lib/smarty_tiki/FunctionHandler/HtmlBodyAttributes.php and...

Benoit GrĂ©goire (@benoitg) via TikiWiki-cvs <[email protected]> Fri, 31 Jul 2026 22:55:49 +0000
Newsgroups gmane.comp.cms.tiki.cvs
Message-ID <6a6d27f52716f_39178c6d8147d@gitlab-sidekiq-low-urgency-cpu-bound-v2-55b65fc646-r6sgf.mail>
--===============5337137866392758256==
Content-Type: multipart/alternative;
 boundary="--==_mimepart_6a6d27f4a4cc5_39178c6d8146d";
 charset=UTF-8
Content-Transfer-Encoding: 7bit


----==_mimepart_6a6d27f4a4cc5_39178c6d8146d
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: quoted-printable



Benoit Gr=C3=A9goire pushed to branch master at Tiki Wiki CMS Groupware /=
 Tiki


Commits:
7f7071e5 by Benoit Gr=C3=A9goire at 2026-07-31T22:39:04+00:00
[FIX] lib/smarty_tiki/FunctionHandler/HtmlBodyAttributes.php and...
---
* [FIX] lib/smarty_tiki/FunctionHandler/HtmlBodyAttributes.php and templa=
tes/layouts/classic/layout_view.tpl:  Fix php warnings.

See merge request tikiwiki/tiki!10831

- - - - -


2 changed files:

- lib/smarty_tiki/FunctionHandler/HtmlBodyAttributes.php
- templates/layouts/classic/layout_view.tpl


Changes:

=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D
lib/smarty_tiki/FunctionHandler/HtmlBodyAttributes.php
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D
@@ -27,7 +27,7 @@ class HtmlBodyAttributes extends Base
         $smarty =3D \TikiLib::lib('smarty');
         $back =3D '';
         $onload =3D '';
-        $class =3D 'tiki ' . 'd-flex ' . 'flex-column ' . 'min-vh-100 ' =
. 'm-0 ' . ' ' . $params['class'] ?? '';
+        $class =3D 'tiki ' . 'd-flex ' . 'flex-column ' . 'min-vh-100 ' =
. 'm-0 ' . ' ' . ($params['class'] ?? '');
 =

         //filename of script called (i.e. tiki-index, tiki-user_informat=
ion, tiki-view_forum, etc), then sanitize chars
         $script_filename =3D pathinfo($_SERVER['SCRIPT_NAME'], PATHINFO_=
FILENAME);


=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D
templates/layouts/classic/layout_view.tpl
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D
@@ -39,11 +39,11 @@
     <div class=3D"middle_outer" id=3D"middle_outer" >
         {block name=3Dmodule_header}{/block}
         <div class=3D"topbar-wrapper navbar-{$navbar_color_variant}-pare=
nt bg-{$navbar_color_variant}-parent tiki-topbar-nav-{$navbar_color_varia=
nt}">
-            <div class=3D"topbar container{if $smarty.session.fullscreen=
 eq 'y'}-fluid{/if} container-std navbar-{$navbar_color_variant}-parent b=
g-{$navbar_color_variant}-parent tiki-topbar-nav-{$navbar_color_variant}"=
 id=3D"topbar">
+            <div class=3D"topbar container{if $smarty.session.fullscreen=
|isset && $smarty.session.fullscreen eq 'y'}-fluid{/if} container-std nav=
bar-{$navbar_color_variant}-parent bg-{$navbar_color_variant}-parent tiki=
-topbar-nav-{$navbar_color_variant}" id=3D"topbar">
                 {modulelist zone=3Dtopbar class=3D"topbar_modules w-100 =
navbar-{$navbar_color_variant} bg-{$navbar_color_variant} tiki-topbar-nav=
-{$navbar_color_variant}" heading_text=3D'{tr}Navigation and related func=
tionality and content{/tr}'}
             </div>
         </div>
-        <div class=3D"container{if $smarty.session.fullscreen eq 'y'}-fl=
uid{/if} container-std middle" id=3D"middle">
+        <div class=3D"container{if $smarty.session.fullscreen|isset && $=
smarty.session.fullscreen eq 'y'}-fluid{/if} container-std middle" id=3D"=
middle">
             <div class=3D"page-content-top-margin"  style=3D"height: var=
(--tiki-page-content-top-margin)"></div>
             <div class=3D"row row-middle" id=3D"row-middle">
                 {if (zone_is_empty('left') or $prefs.feature_left_column=
 eq 'n') and (zone_is_empty('right') or $prefs.feature_right_column eq 'n=
')}
@@ -204,17 +204,18 @@
         </div> {* container middle *}
     </div> {* middle_outer - was missing *}
     {if !isset($smarty.session.fullscreen) || $smarty.session.fullscreen=
 ne 'y'}
-    {if $prefs.feature_layoutshadows eq 'y'}
-    <div id=3D"footer-shadow">{eval var=3D$prefs.footer_shadow_start}{/i=
f}
+        {if $prefs.feature_layoutshadows eq 'y'}
+            <div id=3D"footer-shadow">{eval var=3D$prefs.footer_shadow_s=
tart}
+        {/if}
         <footer class=3D"footer main-footer mt-auto" id=3D"footer">
             <div class=3D"footer_liner">
-                <div class=3D"container{if $smarty.session.fullscreen eq=
 'y'}-fluid{/if} container-std">
+                <div class=3D"container{if $smarty.session.fullscreen|is=
set && $smarty.session.fullscreen eq 'y'}-fluid{/if} container-std"> {* T=
he if on this line is unreachable code.  We are in a larger block that wo=
n't execute if fullscreen if off.  I do not know what the intent is - ben=
oitg - 2026-07-31 *}
                     {modulelist zone=3Dbottom class=3D'bottom_modules p-=
3 mx-n2point5' heading_text=3D'{tr}Site information, links, etc.{/tr}' ro=
le=3Dcontentinfo}
                 </div>
             </div>
         </footer>
         {if $prefs.feature_layoutshadows eq 'y'}{eval var=3D$prefs.foote=
r_shadow_end}</div>{/if}
-{/if}
+    {/if}
 =

     {if $prefs.feature_layoutshadows eq 'y'}{eval var=3D$prefs.main_shad=
ow_end}</div>{/if}
 =




View it on GitLab: https://gitlab.com/tikiwiki/tiki/-/commit/7f7071e5c419=
24ef537493b94c7c926ae9493da7

-- =

View it on GitLab: https://gitlab.com/tikiwiki/tiki/-/commit/7f7071e5c419=
24ef537493b94c7c926ae9493da7
You're receiving this email because of your account on gitlab.com. Manage=
 all notifications: https://gitlab.com/-/profile/notifications | Help: ht=
tps://gitlab.com/help



----==_mimepart_6a6d27f4a4cc5_39178c6d8146d
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: quoted-printable

<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" "http://www=
.w3.org/TR/REC-html40/loose.dtd">
<html lang=3D"en" style=3D'--code-editor-font: var(--default-mono-font, "=
GitLab Mono"), JetBrains Mono, Menlo, DejaVu Sans Mono, Liberation Mono, =
Consolas, Ubuntu Mono, Courier New, andale mono, lucida console, monospac=
e;'>
<head>
<meta content=3D"text/html; charset=3Dutf-8" http-equiv=3D"Content-Type">=

<title>
GitLab
</title>

<style data-premailer=3D"ignore" type=3D"text/css">
a { color: #1068bf; }
</style>


<style>img {
max-width: 100%; height: auto;
}
body {
font-size: .875rem;
}
body {
-webkit-text-shadow: hsla(0,0%,100%,.01) 0 0 1px;
}
body {
font-family: "GitLab Sans",-apple-system,BlinkMacSystemFont,"Segoe UI",Ro=
boto,"Noto Sans",Ubuntu,Cantarell,"Helvetica Neue",sans-serif,"Apple Colo=
r Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji"; font-size=
: inherit;
}
</style>
</head>
<body style=3D'font-size: inherit; -webkit-text-shadow: hsla(0,0%,100%,.0=
1) 0 0 1px; font-family: "GitLab Sans",-apple-system,BlinkMacSystemFont,"=
Segoe UI",Roboto,"Noto Sans",Ubuntu,Cantarell,"Helvetica Neue",sans-serif=
,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji=
";'>
<div class=3D"content">

<h3 style=3D"margin-top: 20px; margin-bottom: 10px;">
Benoit Gr=C3=A9goire pushed to branch master at <a href=3D"https://gitlab=
.com/tikiwiki/tiki">Tiki Wiki CMS Groupware / Tiki</a>
</h3>
<h4 style=3D"margin-top: 10px; margin-bottom: 10px;">
Commits:
</h4>
<ul>
<li>
<strong style=3D"font-weight: 600;"><a href=3D"https://gitlab.com/tikiwik=
i/tiki/-/commit/7f7071e5c41924ef537493b94c7c926ae9493da7">7f7071e5</a></s=
trong>
<div>
<span> by Benoit Gr=C3=A9goire </span> <i> at 2026-07-31T22:39:04+00:00 <=
/i>
</div>
<pre class=3D"commit-message" style=3D'white-space: pre-wrap; display: bl=
ock; font-size: 14px; color: #3a383f; position: relative; font-family: "G=
itLab Mono", "JetBrains Mono", "Menlo", "DejaVu Sans Mono", "Liberation M=
ono", "Consolas", "Ubuntu Mono", "Courier New", "andale mono", "lucida co=
nsole", monospace; font-variant-ligatures: none; word-break: break-all; w=
ord-wrap: break-word; background-color: #fbfafd; border-radius: 2px; marg=
in: 0; padding: 8px 12px; border: 1px solid #dcdcde;'>[FIX] lib/smarty_ti=
ki/FunctionHandler/HtmlBodyAttributes.php and...
---
* [FIX] lib/smarty_tiki/FunctionHandler/HtmlBodyAttributes.php and templa=
tes/layouts/classic/layout_view.tpl:  Fix php warnings.

See merge request tikiwiki/tiki!10831
</pre>
</li>
</ul>
<h4 style=3D"margin-top: 10px; margin-bottom: 10px;">
2 changed files:
</h4>
<ul>
<li class=3D"file-stats">
<a href=3D"#dca7e1903a1361c622cbbd6026c30f1cfe2da76c">
lib/smarty_tiki/FunctionHandler/HtmlBodyAttributes.php
</a>
</li>
<li class=3D"file-stats">
<a href=3D"#5ad0ad22eaf58f19a86154f711418ef79864dd86">
templates/layouts/classic/layout_view.tpl
</a>
</li>
</ul>
<h4 style=3D"margin-top: 10px; margin-bottom: 10px;">
Changes:
</h4>
<li id=3D"dca7e1903a1361c622cbbd6026c30f1cfe2da76c">
<a href=3D"https://gitlab.com/tikiwiki/tiki/-/commit/7f7071e5c41924ef5374=
93b94c7c926ae9493da7#dca7e1903a1361c622cbbd6026c30f1cfe2da76c"><strong st=
yle=3D"font-weight: 600;">lib/smarty_tiki/FunctionHandler/HtmlBodyAttribu=
tes.php</strong></a>
<hr style=3D"overflow: hidden; border: 1px solid #dcdcde;">
<table class=3D"code white" style=3D"border-spacing: 0; border-collapse: =
collapse; width: auto; font-family: monospace; font-size: 90%;" bgcolor=3D=
"#ffffff" width=3D"100%" cellpadding=3D"0" cellspacing=3D"0">
<tr class=3D"line_holder match" style=3D"line-height: 1.6;">
<td class=3D"diff-line-num unfold js-unfold old_line" data-linenumber=3D"=
27" style=3D"width: 35px; color: rgba(5,5,6,.24); border-right-width: 1px=
; border-right-color: #ececef; border-right-style: solid; padding: inheri=
t;" align=3D"right" bgcolor=3D"#fbfafd">...</td>
<td class=3D"diff-line-num unfold js-unfold new_line" data-linenumber=3D"=
27" style=3D"width: 35px; color: rgba(5,5,6,.24); border-right-width: 1px=
; border-right-color: #ececef; border-right-style: solid; padding: inheri=
t;" align=3D"right" bgcolor=3D"#fbfafd">...</td>
<td class=3D"line_content match" style=3D"color: rgba(5,5,6,.24); padding=
: inherit;" bgcolor=3D"#fbfafd">@@ -27,7 +27,7 @@ class HtmlBodyAttribute=
s extends Base</td>
</tr>
<tr class=3D"line_holder" style=3D"line-height: 1.6;">
<td class=3D"old_line diff-line-num" data-linenumber=3D"27" style=3D"widt=
h: 35px; color: rgba(5,5,6,.24); border-right-width: 1px; border-right-co=
lor: #ececef; border-right-style: solid; padding: inherit;" align=3D"righ=
t" bgcolor=3D"#fbfafd">
27
</td>
<td class=3D"new_line diff-line-num" data-linenumber=3D"27" style=3D"widt=
h: 35px; color: rgba(5,5,6,.24); border-right-width: 1px; border-right-co=
lor: #ececef; border-right-style: solid; padding: inherit;" align=3D"righ=
t" bgcolor=3D"#fbfafd">
27
</td>
<td class=3D"line_content" style=3D"padding: inherit;"><pre style=3D'disp=
lay: block; font-size: 14px; color: #3a383f; position: relative; font-fam=
ily: "GitLab Mono", "JetBrains Mono", "Menlo", "DejaVu Sans Mono", "Liber=
ation Mono", "Consolas", "Ubuntu Mono", "Courier New", "andale mono", "lu=
cida console", monospace; font-variant-ligatures: none; word-break: break=
-all; word-wrap: break-word; background-color: inherit; border-radius: 2p=
x; margin: 0; padding: 0; border: inherit solid #dcdcde;'> <span class=3D=
"line" data-lang=3D"php">        <span class=3D"nv" style=3D"color: #0080=
80;">$smarty</span> <span class=3D"o" style=3D"font-weight: 600;">=3D</sp=
an> <span class=3D"nc" style=3D"color: #445588; font-weight: 600;">\TikiL=
ib</span><span class=3D"o" style=3D"font-weight: 600;">::</span><span cla=
ss=3D"nf" style=3D"color: #990000; font-weight: 600;">lib</span><span cla=
ss=3D"p">(</span><span class=3D"s1" style=3D"color: #dd1144;">'smarty'</s=
pan><span class=3D"p">);</span></span>
</pre></td>
</tr>
<tr class=3D"line_holder" style=3D"line-height: 1.6;">
<td class=3D"old_line diff-line-num" data-linenumber=3D"28" style=3D"widt=
h: 35px; color: rgba(5,5,6,.24); border-right-width: 1px; border-right-co=
lor: #ececef; border-right-style: solid; padding: inherit;" align=3D"righ=
t" bgcolor=3D"#fbfafd">
28
</td>
<td class=3D"new_line diff-line-num" data-linenumber=3D"28" style=3D"widt=
h: 35px; color: rgba(5,5,6,.24); border-right-width: 1px; border-right-co=
lor: #ececef; border-right-style: solid; padding: inherit;" align=3D"righ=
t" bgcolor=3D"#fbfafd">
28
</td>
<td class=3D"line_content" style=3D"padding: inherit;"><pre style=3D'disp=
lay: block; font-size: 14px; color: #3a383f; position: relative; font-fam=
ily: "GitLab Mono", "JetBrains Mono", "Menlo", "DejaVu Sans Mono", "Liber=
ation Mono", "Consolas", "Ubuntu Mono", "Courier New", "andale mono", "lu=
cida console", monospace; font-variant-ligatures: none; word-break: break=
-all; word-wrap: break-word; background-color: inherit; border-radius: 2p=
x; margin: 0; padding: 0; border: inherit solid #dcdcde;'> <span class=3D=
"line" data-lang=3D"php">        <span class=3D"nv" style=3D"color: #0080=
80;">$back</span> <span class=3D"o" style=3D"font-weight: 600;">=3D</span=
> <span class=3D"s1" style=3D"color: #dd1144;">''</span><span class=3D"p"=
>;</span></span>
</pre></td>
</tr>
<tr class=3D"line_holder" style=3D"line-height: 1.6;">
<td class=3D"old_line diff-line-num" data-linenumber=3D"29" style=3D"widt=
h: 35px; color: rgba(5,5,6,.24); border-right-width: 1px; border-right-co=
lor: #ececef; border-right-style: solid; padding: inherit;" align=3D"righ=
t" bgcolor=3D"#fbfafd">
29
</td>
<td class=3D"new_line diff-line-num" data-linenumber=3D"29" style=3D"widt=
h: 35px; color: rgba(5,5,6,.24); border-right-width: 1px; border-right-co=
lor: #ececef; border-right-style: solid; padding: inherit;" align=3D"righ=
t" bgcolor=3D"#fbfafd">
29
</td>
<td class=3D"line_content" style=3D"padding: inherit;"><pre style=3D'disp=
lay: block; font-size: 14px; color: #3a383f; position: relative; font-fam=
ily: "GitLab Mono", "JetBrains Mono", "Menlo", "DejaVu Sans Mono", "Liber=
ation Mono", "Consolas", "Ubuntu Mono", "Courier New", "andale mono", "lu=
cida console", monospace; font-variant-ligatures: none; word-break: break=
-all; word-wrap: break-word; background-color: inherit; border-radius: 2p=
x; margin: 0; padding: 0; border: inherit solid #dcdcde;'> <span class=3D=
"line" data-lang=3D"php">        <span class=3D"nv" style=3D"color: #0080=
80;">$onload</span> <span class=3D"o" style=3D"font-weight: 600;">=3D</sp=
an> <span class=3D"s1" style=3D"color: #dd1144;">''</span><span class=3D"=
p">;</span></span>
</pre></td>
</tr>
<tr class=3D"line_holder old" style=3D"line-height: 1.6;">
<td class=3D"old_line diff-line-num old" data-linenumber=3D"30" style=3D"=
width: 35px; color: rgba(5,5,6,.24); border-right-width: 1px; border-righ=
t-color: #fac5cd; border-right-style: solid; padding: inherit;" align=3D"=
right" bgcolor=3D"#f9d7dc">
30
</td>
<td class=3D"new_line diff-line-num old" data-linenumber=3D"30" style=3D"=
width: 35px; color: rgba(5,5,6,.24); border-right-width: 1px; border-righ=
t-color: #fac5cd; border-right-style: solid; padding: inherit;" align=3D"=
right" bgcolor=3D"#f9d7dc">
 =

</td>
<td class=3D"line_content old" style=3D"padding: inherit;" bgcolor=3D"#fb=
e9eb"><pre style=3D'display: block; font-size: 14px; color: #3a383f; posi=
tion: relative; font-family: "GitLab Mono", "JetBrains Mono", "Menlo", "D=
ejaVu Sans Mono", "Liberation Mono", "Consolas", "Ubuntu Mono", "Courier =
New", "andale mono", "lucida console", monospace; font-variant-ligatures:=
 none; word-break: break-all; word-wrap: break-word; background-color: in=
herit; border-radius: 2px; margin: 0; padding: 0; border: inherit solid #=
dcdcde;'>-<span class=3D"line" data-lang=3D"php">        <span class=3D"n=
v" style=3D"color: #008080;">$class</span> <span class=3D"o" style=3D"fon=
t-weight: 600;">=3D</span> <span class=3D"s1" style=3D"color: #dd1144;">'=
tiki '</span> <span class=3D"mf" style=3D"color: #009999;">.</span> <span=
 class=3D"s1" style=3D"color: #dd1144;">'d-flex '</span> <span class=3D"m=
f" style=3D"color: #009999;">.</span> <span class=3D"s1" style=3D"color: =
#dd1144;">'flex-column '</span> <span class=3D"mf" style=3D"color: #00999=
9;">.</span> <span class=3D"s1" style=3D"color: #dd1144;">'min-vh-100 '</=
span> <span class=3D"mf" style=3D"color: #009999;">.</span> <span class=3D=
"s1" style=3D"color: #dd1144;">'m-0 '</span> <span class=3D"mf" style=3D"=
color: #009999;">.</span> <span class=3D"s1" style=3D"color: #dd1144;">' =
'</span> <span class=3D"mf" style=3D"color: #009999;">.</span> <span clas=
s=3D"nv" style=3D"color: #008080;">$params</span><span class=3D"p">[</spa=
n><span class=3D"s1" style=3D"color: #dd1144;">'class'</span><span class=3D=
"p">]</span> <span class=3D"o" style=3D"font-weight: 600;">??</span> <spa=
n class=3D"s1" style=3D"color: #dd1144;">''</span><span class=3D"p">;</sp=
an></span>
</pre></td>
</tr>
<tr class=3D"line_holder new" style=3D"line-height: 1.6;">
<td class=3D"old_line diff-line-num new" data-linenumber=3D"31" style=3D"=
width: 35px; color: rgba(5,5,6,.24); border-right-width: 1px; border-righ=
t-color: #c7f0d2; border-right-style: solid; padding: inherit;" align=3D"=
right" bgcolor=3D"#ddfbe6">
 =

</td>
<td class=3D"new_line diff-line-num new" data-linenumber=3D"30" style=3D"=
width: 35px; color: rgba(5,5,6,.24); border-right-width: 1px; border-righ=
t-color: #c7f0d2; border-right-style: solid; padding: inherit;" align=3D"=
right" bgcolor=3D"#ddfbe6">
30
</td>
<td class=3D"line_content new" style=3D"padding: inherit;" bgcolor=3D"#ec=
fdf0"><pre style=3D'display: block; font-size: 14px; color: #3a383f; posi=
tion: relative; font-family: "GitLab Mono", "JetBrains Mono", "Menlo", "D=
ejaVu Sans Mono", "Liberation Mono", "Consolas", "Ubuntu Mono", "Courier =
New", "andale mono", "lucida console", monospace; font-variant-ligatures:=
 none; word-break: break-all; word-wrap: break-word; background-color: in=
herit; border-radius: 2px; margin: 0; padding: 0; border: inherit solid #=
dcdcde;'>+<span class=3D"line" data-lang=3D"php">        <span class=3D"n=
v" style=3D"color: #008080;">$class</span> <span class=3D"o" style=3D"fon=
t-weight: 600;">=3D</span> <span class=3D"s1" style=3D"color: #dd1144;">'=
tiki '</span> <span class=3D"mf" style=3D"color: #009999;">.</span> <span=
 class=3D"s1" style=3D"color: #dd1144;">'d-flex '</span> <span class=3D"m=
f" style=3D"color: #009999;">.</span> <span class=3D"s1" style=3D"color: =
#dd1144;">'flex-column '</span> <span class=3D"mf" style=3D"color: #00999=
9;">.</span> <span class=3D"s1" style=3D"color: #dd1144;">'min-vh-100 '</=
span> <span class=3D"mf" style=3D"color: #009999;">.</span> <span class=3D=
"s1" style=3D"color: #dd1144;">'m-0 '</span> <span class=3D"mf" style=3D"=
color: #009999;">.</span> <span class=3D"s1" style=3D"color: #dd1144;">' =
'</span> <span class=3D"mf" style=3D"color: #009999;">.</span> <span clas=
s=3D"p"><span class=3D"idiff left addition" style=3D"background-color: #c=
7f0d2;">(</span></span><span class=3D"nv" style=3D"color: #008080;">$para=
ms</span><span class=3D"p">[</span><span class=3D"s1" style=3D"color: #dd=
1144;">'class'</span><span class=3D"p">]</span> <span class=3D"o" style=3D=
"font-weight: 600;">??</span> <span class=3D"s1" style=3D"color: #dd1144;=
">''</span><span class=3D"p"><span class=3D"idiff right addition" style=3D=
"background-color: #c7f0d2;">)</span>;</span></span>
</pre></td>
</tr>
<tr class=3D"line_holder" style=3D"line-height: 1.6;">
<td class=3D"old_line diff-line-num" data-linenumber=3D"31" style=3D"widt=
h: 35px; color: rgba(5,5,6,.24); border-right-width: 1px; border-right-co=
lor: #ececef; border-right-style: solid; padding: inherit;" align=3D"righ=
t" bgcolor=3D"#fbfafd">
31
</td>
<td class=3D"new_line diff-line-num" data-linenumber=3D"31" style=3D"widt=
h: 35px; color: rgba(5,5,6,.24); border-right-width: 1px; border-right-co=
lor: #ececef; border-right-style: solid; padding: inherit;" align=3D"righ=
t" bgcolor=3D"#fbfafd">
31
</td>
<td class=3D"line_content" style=3D"padding: inherit;"><pre style=3D'disp=
lay: block; font-size: 14px; color: #3a383f; position: relative; font-fam=
ily: "GitLab Mono", "JetBrains Mono", "Menlo", "DejaVu Sans Mono", "Liber=
ation Mono", "Consolas", "Ubuntu Mono", "Courier New", "andale mono", "lu=
cida console", monospace; font-variant-ligatures: none; word-break: break=
-all; word-wrap: break-word; background-color: inherit; border-radius: 2p=
x; margin: 0; padding: 0; border: inherit solid #dcdcde;'> <span class=3D=
"line" data-lang=3D"php"></span>
</pre></td>
</tr>
<tr class=3D"line_holder" style=3D"line-height: 1.6;">
<td class=3D"old_line diff-line-num" data-linenumber=3D"32" style=3D"widt=
h: 35px; color: rgba(5,5,6,.24); border-right-width: 1px; border-right-co=
lor: #ececef; border-right-style: solid; padding: inherit;" align=3D"righ=
t" bgcolor=3D"#fbfafd">
32
</td>
<td class=3D"new_line diff-line-num" data-linenumber=3D"32" style=3D"widt=
h: 35px; color: rgba(5,5,6,.24); border-right-width: 1px; border-right-co=
lor: #ececef; border-right-style: solid; padding: inherit;" align=3D"righ=
t" bgcolor=3D"#fbfafd">
32
</td>
<td class=3D"line_content" style=3D"padding: inherit;"><pre style=3D'disp=
lay: block; font-size: 14px; color: #3a383f; position: relative; font-fam=
ily: "GitLab Mono", "JetBrains Mono", "Menlo", "DejaVu Sans Mono", "Liber=
ation Mono", "Consolas", "Ubuntu Mono", "Courier New", "andale mono", "lu=
cida console", monospace; font-variant-ligatures: none; word-break: break=
-all; word-wrap: break-word; background-color: inherit; border-radius: 2p=
x; margin: 0; padding: 0; border: inherit solid #dcdcde;'> <span class=3D=
"line" data-lang=3D"php">        <span class=3D"c1" style=3D"color: #9999=
88; font-style: italic;">//filename of script called (i.e. tiki-index, ti=
ki-user_information, tiki-view_forum, etc), then sanitize chars</span></s=
pan>
</pre></td>
</tr>
<tr class=3D"line_holder" style=3D"line-height: 1.6;">
<td class=3D"old_line diff-line-num" data-linenumber=3D"33" style=3D"widt=
h: 35px; color: rgba(5,5,6,.24); border-right-width: 1px; border-right-co=
lor: #ececef; border-right-style: solid; padding: inherit;" align=3D"righ=
t" bgcolor=3D"#fbfafd">
33
</td>
<td class=3D"new_line diff-line-num" data-linenumber=3D"33" style=3D"widt=
h: 35px; color: rgba(5,5,6,.24); border-right-width: 1px; border-right-co=
lor: #ececef; border-right-style: solid; padding: inherit;" align=3D"righ=
t" bgcolor=3D"#fbfafd">
33
</td>
<td class=3D"line_content" style=3D"padding: inherit;"><pre style=3D'disp=
lay: block; font-size: 14px; color: #3a383f; position: relative; font-fam=
ily: "GitLab Mono", "JetBrains Mono", "Menlo", "DejaVu Sans Mono", "Liber=
ation Mono", "Consolas", "Ubuntu Mono", "Courier New", "andale mono", "lu=
cida console", monospace; font-variant-ligatures: none; word-break: break=
-all; word-wrap: break-word; background-color: inherit; border-radius: 2p=
x; margin: 0; padding: 0; border: inherit solid #dcdcde;'> <span class=3D=
"line" data-lang=3D"php">        <span class=3D"nv" style=3D"color: #0080=
80;">$script_filename</span> <span class=3D"o" style=3D"font-weight: 600;=
">=3D</span> <span class=3D"nb" style=3D"color: #0086b3;">pathinfo</span>=
<span class=3D"p">(</span><span class=3D"nv" style=3D"color: #008080;">$_=
SERVER</span><span class=3D"p">[</span><span class=3D"s1" style=3D"color:=
 #dd1144;">'SCRIPT_NAME'</span><span class=3D"p">],</span> <span class=3D=
"no" style=3D"color: #008080;">PATHINFO_FILENAME</span><span class=3D"p">=
);</span></span>
</pre></td>
</tr>

</table>
<br>
</li>
<li id=3D"5ad0ad22eaf58f19a86154f711418ef79864dd86">
<a href=3D"https://gitlab.com/tikiwiki/tiki/-/commit/7f7071e5c41924ef5374=
93b94c7c926ae9493da7#5ad0ad22eaf58f19a86154f711418ef79864dd86"><strong st=
yle=3D"font-weight: 600;">templates/layouts/classic/layout_view.tpl</stro=
ng></a>
<hr style=3D"overflow: hidden; border: 1px solid #dcdcde;">
<table class=3D"code white" style=3D"border-spacing: 0; border-collapse: =
collapse; width: auto; font-family: monospace; font-size: 90%;" bgcolor=3D=
"#ffffff" width=3D"100%" cellpadding=3D"0" cellspacing=3D"0">
<tr class=3D"line_holder match" style=3D"line-height: 1.6;">
<td class=3D"diff-line-num unfold js-unfold old_line" data-linenumber=3D"=
39" style=3D"width: 35px; color: rgba(5,5,6,.24); border-right-width: 1px=
; border-right-color: #ececef; border-right-style: solid; padding: inheri=
t;" align=3D"right" bgcolor=3D"#fbfafd">...</td>
<td class=3D"diff-line-num unfold js-unfold new_line" data-linenumber=3D"=
39" style=3D"width: 35px; color: rgba(5,5,6,.24); border-right-width: 1px=
; border-right-color: #ececef; border-right-style: solid; padding: inheri=
t;" align=3D"right" bgcolor=3D"#fbfafd">...</td>
<td class=3D"line_content match" style=3D"color: rgba(5,5,6,.24); padding=
: inherit;" bgcolor=3D"#fbfafd">@@ -39,11 +39,11 @@</td>
</tr>
<tr class=3D"line_holder" style=3D"line-height: 1.6;">
<td class=3D"old_line diff-line-num" data-linenumber=3D"39" style=3D"widt=
h: 35px; color: rgba(5,5,6,.24); border-right-width: 1px; border-right-co=
lor: #ececef; border-right-style: solid; padding: inherit;" align=3D"righ=
t" bgcolor=3D"#fbfafd">
39
</td>
<td class=3D"new_line diff-line-num" data-linenumber=3D"39" style=3D"widt=
h: 35px; color: rgba(5,5,6,.24); border-right-width: 1px; border-right-co=
lor: #ececef; border-right-style: solid; padding: inherit;" align=3D"righ=
t" bgcolor=3D"#fbfafd">
39
</td>
<td class=3D"line_content" style=3D"padding: inherit;"><pre style=3D'disp=
lay: block; font-size: 14px; color: #3a383f; position: relative; font-fam=
ily: "GitLab Mono", "JetBrains Mono", "Menlo", "DejaVu Sans Mono", "Liber=
ation Mono", "Consolas", "Ubuntu Mono", "Courier New", "andale mono", "lu=
cida console", monospace; font-variant-ligatures: none; word-break: break=
-all; word-wrap: break-word; background-color: inherit; border-radius: 2p=
x; margin: 0; padding: 0; border: inherit solid #dcdcde;'> <span class=3D=
"line" data-lang=3D"smarty">    <span class=3D"nt" style=3D"color: #00008=
0;">&lt;div</span> <span class=3D"na" style=3D"color: #008080;">class=3D<=
/span><span class=3D"s" style=3D"color: #dd1144;">"middle_outer"</span> <=
span class=3D"na" style=3D"color: #008080;">id=3D</span><span class=3D"s"=
 style=3D"color: #dd1144;">"middle_outer"</span> <span class=3D"nt" style=
=3D"color: #000080;">&gt;</span></span>
</pre></td>
</tr>
<tr class=3D"line_holder" style=3D"line-height: 1.6;">
<td class=3D"old_line diff-line-num" data-linenumber=3D"40" style=3D"widt=
h: 35px; color: rgba(5,5,6,.24); border-right-width: 1px; border-right-co=
lor: #ececef; border-right-style: solid; padding: inherit;" align=3D"righ=
t" bgcolor=3D"#fbfafd">
40
</td>
<td class=3D"new_line diff-line-num" data-linenumber=3D"40" style=3D"widt=
h: 35px; color: rgba(5,5,6,.24); border-right-width: 1px; border-right-co=
lor: #ececef; border-right-style: solid; padding: inherit;" align=3D"righ=
t" bgcolor=3D"#fbfafd">
40
</td>
<td class=3D"line_content" style=3D"padding: inherit;"><pre style=3D'disp=
lay: block; font-size: 14px; color: #3a383f; position: relative; font-fam=
ily: "GitLab Mono", "JetBrains Mono", "Menlo", "DejaVu Sans Mono", "Liber=
ation Mono", "Consolas", "Ubuntu Mono", "Courier New", "andale mono", "lu=
cida console", monospace; font-variant-ligatures: none; word-break: break=
-all; word-wrap: break-word; background-color: inherit; border-radius: 2p=
x; margin: 0; padding: 0; border: inherit solid #dcdcde;'> <span class=3D=
"line" data-lang=3D"smarty">        <span class=3D"k" style=3D"font-weigh=
t: 600;">{</span><span class=3D"nb" style=3D"color: #0086b3;">block</span=
> <span class=3D"na" style=3D"color: #008080;">name</span><span class=3D"=
o" style=3D"font-weight: 600;">=3D</span><span class=3D"na" style=3D"colo=
r: #008080;">module_header</span><span class=3D"k" style=3D"font-weight: =
600;">}{/</span><span class=3D"nb" style=3D"color: #0086b3;">block</span>=
<span class=3D"k" style=3D"font-weight: 600;">}</span></span>
</pre></td>
</tr>
<tr class=3D"line_holder" style=3D"line-height: 1.6;">
<td class=3D"old_line diff-line-num" data-linenumber=3D"41" style=3D"widt=
h: 35px; color: rgba(5,5,6,.24); border-right-width: 1px; border-right-co=
lor: #ececef; border-right-style: solid; padding: inherit;" align=3D"righ=
t" bgcolor=3D"#fbfafd">
41
</td>
<td class=3D"new_line diff-line-num" data-linenumber=3D"41" style=3D"widt=
h: 35px; color: rgba(5,5,6,.24); border-right-width: 1px; border-right-co=
lor: #ececef; border-right-style: solid; padding: inherit;" align=3D"righ=
t" bgcolor=3D"#fbfafd">
41
</td>
<td class=3D"line_content" style=3D"padding: inherit;"><pre style=3D'disp=
lay: block; font-size: 14px; color: #3a383f; position: relative; font-fam=
ily: "GitLab Mono", "JetBrains Mono", "Menlo", "DejaVu Sans Mono", "Liber=
ation Mono", "Consolas", "Ubuntu Mono", "Courier New", "andale mono", "lu=
cida console", monospace; font-variant-ligatures: none; word-break: break=
-all; word-wrap: break-word; background-color: inherit; border-radius: 2p=
x; margin: 0; padding: 0; border: inherit solid #dcdcde;'> <span class=3D=
"line" data-lang=3D"smarty">        <span class=3D"nt" style=3D"color: #0=
00080;">&lt;div</span> <span class=3D"na" style=3D"color: #008080;">class=
=3D</span><span class=3D"s" style=3D"color: #dd1144;">"topbar-wrapper nav=
bar-</span><span class=3D"k" style=3D"font-weight: 600;">{</span><span cl=
ass=3D"nv" style=3D"color: #008080;">$navbar_color_variant</span><span cl=
ass=3D"k" style=3D"font-weight: 600;">}</span><span class=3D"s" style=3D"=
color: #dd1144;">-parent bg-</span><span class=3D"k" style=3D"font-weight=
: 600;">{</span><span class=3D"nv" style=3D"color: #008080;">$navbar_colo=
r_variant</span><span class=3D"k" style=3D"font-weight: 600;">}</span><sp=
an class=3D"s" style=3D"color: #dd1144;">-parent tiki-topbar-nav-</span><=
span class=3D"k" style=3D"font-weight: 600;">{</span><span class=3D"nv" s=
tyle=3D"color: #008080;">$navbar_color_variant</span><span class=3D"k" st=
yle=3D"font-weight: 600;">}</span><span class=3D"s" style=3D"color: #dd11=
44;">"</span><span class=3D"nt" style=3D"color: #000080;">&gt;</span></sp=
an>
</pre></td>
</tr>
<tr class=3D"line_holder old" style=3D"line-height: 1.6;">
<td class=3D"old_line diff-line-num old" data-linenumber=3D"42" style=3D"=
width: 35px; color: rgba(5,5,6,.24); border-right-width: 1px; border-righ=
t-color: #fac5cd; border-right-style: solid; padding: inherit;" align=3D"=
right" bgcolor=3D"#f9d7dc">
42
</td>
<td class=3D"new_line diff-line-num old" data-linenumber=3D"42" style=3D"=
width: 35px; color: rgba(5,5,6,.24); border-right-width: 1px; border-righ=
t-color: #fac5cd; border-right-style: solid; padding: inherit;" align=3D"=
right" bgcolor=3D"#f9d7dc">
 =

</td>
<td class=3D"line_content old" style=3D"padding: inherit;" bgcolor=3D"#fb=
e9eb"><pre style=3D'display: block; font-size: 14px; color: #3a383f; posi=
tion: relative; font-family: "GitLab Mono", "JetBrains Mono", "Menlo", "D=
ejaVu Sans Mono", "Liberation Mono", "Consolas", "Ubuntu Mono", "Courier =
New", "andale mono", "lucida console", monospace; font-variant-ligatures:=
 none; word-break: break-all; word-wrap: break-word; background-color: in=
herit; border-radius: 2px; margin: 0; padding: 0; border: inherit solid #=
dcdcde;'>-<span class=3D"line" data-lang=3D"smarty">            <span cla=
ss=3D"nt" style=3D"color: #000080;">&lt;div</span> <span class=3D"na" sty=
le=3D"color: #008080;">class=3D</span><span class=3D"s" style=3D"color: #=
dd1144;">"topbar container</span><span class=3D"k" style=3D"font-weight: =
600;">{</span><span class=3D"nb" style=3D"color: #0086b3;">if</span> <spa=
n class=3D"nv" style=3D"color: #008080;">$smarty.session.fullscreen</span=
> <span class=3D"na" style=3D"color: #008080;">eq</span> <span class=3D"s=
1" style=3D"color: #dd1144;">'y'</span><span class=3D"k" style=3D"font-we=
ight: 600;">}</span><span class=3D"s" style=3D"color: #dd1144;">-fluid</s=
pan><span class=3D"k" style=3D"font-weight: 600;">{/</span><span class=3D=
"nb" style=3D"color: #0086b3;">if</span><span class=3D"k" style=3D"font-w=
eight: 600;">}</span><span class=3D"s" style=3D"color: #dd1144;"> contain=
er-std navbar-</span><span class=3D"k" style=3D"font-weight: 600;">{</spa=
n><span class=3D"nv" style=3D"color: #008080;">$navbar_color_variant</spa=
n><span class=3D"k" style=3D"font-weight: 600;">}</span><span class=3D"s"=
 style=3D"color: #dd1144;">-parent bg-</span><span class=3D"k" style=3D"f=
ont-weight: 600;">{</span><span class=3D"nv" style=3D"color: #008080;">$n=
avbar_color_variant</span><span class=3D"k" style=3D"font-weight: 600;">}=
</span><span class=3D"s" style=3D"color: #dd1144;">-parent tiki-topbar-na=
v-</span><span class=3D"k" style=3D"font-weight: 600;">{</span><span clas=
s=3D"nv" style=3D"color: #008080;">$navbar_color_variant</span><span clas=
s=3D"k" style=3D"font-weight: 600;">}</span><span class=3D"s" style=3D"co=
lor: #dd1144;">"</span> <span class=3D"na" style=3D"color: #008080;">id=3D=
</span><span class=3D"s" style=3D"color: #dd1144;">"topbar"</span><span c=
lass=3D"nt" style=3D"color: #000080;">&gt;</span></span>
</pre></td>
</tr>
<tr class=3D"line_holder new" style=3D"line-height: 1.6;">
<td class=3D"old_line diff-line-num new" data-linenumber=3D"43" style=3D"=
width: 35px; color: rgba(5,5,6,.24); border-right-width: 1px; border-righ=
t-color: #c7f0d2; border-right-style: solid; padding: inherit;" align=3D"=
right" bgcolor=3D"#ddfbe6">
 =

</td>
<td class=3D"new_line diff-line-num new" data-linenumber=3D"42" style=3D"=
width: 35px; color: rgba(5,5,6,.24); border-right-width: 1px; border-righ=
t-color: #c7f0d2; border-right-style: solid; padding: inherit;" align=3D"=
right" bgcolor=3D"#ddfbe6">
42
</td>
<td class=3D"line_content new" style=3D"padding: inherit;" bgcolor=3D"#ec=
fdf0"><pre style=3D'display: block; font-size: 14px; color: #3a383f; posi=
tion: relative; font-family: "GitLab Mono", "JetBrains Mono", "Menlo", "D=
ejaVu Sans Mono", "Liberation Mono", "Consolas", "Ubuntu Mono", "Courier =
New", "andale mono", "lucida console", monospace; font-variant-ligatures:=
 none; word-break: break-all; word-wrap: break-word; background-color: in=
herit; border-radius: 2px; margin: 0; padding: 0; border: inherit solid #=
dcdcde;'>+<span class=3D"line" data-lang=3D"smarty">            <span cla=
ss=3D"nt" style=3D"color: #000080;">&lt;div</span> <span class=3D"na" sty=
le=3D"color: #008080;">class=3D</span><span class=3D"s" style=3D"color: #=
dd1144;">"topbar container</span><span class=3D"k" style=3D"font-weight: =
600;">{</span><span class=3D"nb" style=3D"color: #0086b3;">if</span> <spa=
n class=3D"nv" style=3D"color: #008080;"><span class=3D"idiff left additi=
on" style=3D"background-color: #c7f0d2;">$smarty.session.fullscreen</span=
></span><span class=3D"o" style=3D"font-weight: 600;"><span class=3D"idif=
f addition" style=3D"background-color: #c7f0d2;">|</span></span><span cla=
ss=3D"na" style=3D"color: #008080;"><span class=3D"idiff addition" style=3D=
"background-color: #c7f0d2;">isset</span></span><span class=3D"idiff addi=
tion" style=3D"background-color: #c7f0d2;"> </span><span class=3D"o" styl=
e=3D"font-weight: 600;"><span class=3D"idiff addition" style=3D"backgroun=
d-color: #c7f0d2;">&amp;&amp;</span></span><span class=3D"idiff right add=
ition" style=3D"background-color: #c7f0d2;"> </span><span class=3D"nv" st=
yle=3D"color: #008080;">$smarty.session.fullscreen</span> <span class=3D"=
na" style=3D"color: #008080;">eq</span> <span class=3D"s1" style=3D"color=
: #dd1144;">'y'</span><span class=3D"k" style=3D"font-weight: 600;">}</sp=
an><span class=3D"s" style=3D"color: #dd1144;">-fluid</span><span class=3D=
"k" style=3D"font-weight: 600;">{/</span><span class=3D"nb" style=3D"colo=
r: #0086b3;">if</span><span class=3D"k" style=3D"font-weight: 600;">}</sp=
an><span class=3D"s" style=3D"color: #dd1144;"> container-std navbar-</sp=
an><span class=3D"k" style=3D"font-weight: 600;">{</span><span class=3D"n=
v" style=3D"color: #008080;">$navbar_color_variant</span><span class=3D"k=
" style=3D"font-weight: 600;">}</span><span class=3D"s" style=3D"color: #=
dd1144;">-parent bg-</span><span class=3D"k" style=3D"font-weight: 600;">=
{</span><span class=3D"nv" style=3D"color: #008080;">$navbar_color_varian=
t</span><span class=3D"k" style=3D"font-weight: 600;">}</span><span class=
=3D"s" style=3D"color: #dd1144;">-parent tiki-topbar-nav-</span><span cla=
ss=3D"k" style=3D"font-weight: 600;">{</span><span class=3D"nv" style=3D"=
color: #008080;">$navbar_color_variant</span><span class=3D"k" style=3D"f=
ont-weight: 600;">}</span><span class=3D"s" style=3D"color: #dd1144;">"</=
span> <span class=3D"na" style=3D"color: #008080;">id=3D</span><span clas=
s=3D"s" style=3D"color: #dd1144;">"topbar"</span><span class=3D"nt" style=
=3D"color: #000080;">&gt;</span></span>
</pre></td>
</tr>
<tr class=3D"line_holder" style=3D"line-height: 1.6;">
<td class=3D"old_line diff-line-num" data-linenumber=3D"43" style=3D"widt=
h: 35px; color: rgba(5,5,6,.24); border-right-width: 1px; border-right-co=
lor: #ececef; border-right-style: solid; padding: inherit;" align=3D"righ=
t" bgcolor=3D"#fbfafd">
43
</td>
<td class=3D"new_line diff-line-num" data-linenumber=3D"43" style=3D"widt=
h: 35px; color: rgba(5,5,6,.24); border-right-width: 1px; border-right-co=
lor: #ececef; border-right-style: solid; padding: inherit;" align=3D"righ=
t" bgcolor=3D"#fbfafd">
43
</td>
<td class=3D"line_content" style=3D"padding: inherit;"><pre style=3D'disp=
lay: block; font-size: 14px; color: #3a383f; position: relative; font-fam=
ily: "GitLab Mono", "JetBrains Mono", "Menlo", "DejaVu Sans Mono", "Liber=
ation Mono", "Consolas", "Ubuntu Mono", "Courier New", "andale mono", "lu=
cida console", monospace; font-variant-ligatures: none; word-break: break=
-all; word-wrap: break-word; background-color: inherit; border-radius: 2p=
x; margin: 0; padding: 0; border: inherit solid #dcdcde;'> <span class=3D=
"line" data-lang=3D"smarty">                <span class=3D"k" style=3D"fo=
nt-weight: 600;">{</span><span class=3D"na" style=3D"color: #008080;">mod=
ulelist</span> <span class=3D"na" style=3D"color: #008080;">zone</span><s=
pan class=3D"o" style=3D"font-weight: 600;">=3D</span><span class=3D"na" =
style=3D"color: #008080;">topbar</span> <span class=3D"na" style=3D"color=
: #008080;">class</span><span class=3D"o" style=3D"font-weight: 600;">=3D=
</span><span class=3D"s2" style=3D"color: #dd1144;">"topbar_modules w-100=
 navbar-{$navbar_color_variant} bg-{$navbar_color_variant} tiki-topbar-na=
v-{$navbar_color_variant}"</span> <span class=3D"na" style=3D"color: #008=
080;">heading_text</span><span class=3D"o" style=3D"font-weight: 600;">=3D=
</span><span class=3D"s1" style=3D"color: #dd1144;">'{tr}Navigation and r=
elated functionality and content{/tr}'</span><span class=3D"k" style=3D"f=
ont-weight: 600;">}</span></span>
</pre></td>
</tr>
<tr class=3D"line_holder" style=3D"line-height: 1.6;">
<td class=3D"old_line diff-line-num" data-linenumber=3D"44" style=3D"widt=
h: 35px; color: rgba(5,5,6,.24); border-right-width: 1px; border-right-co=
lor: #ececef; border-right-style: solid; padding: inherit;" align=3D"righ=
t" bgcolor=3D"#fbfafd">
44
</td>
<td class=3D"new_line diff-line-num" data-linenumber=3D"44" style=3D"widt=
h: 35px; color: rgba(5,5,6,.24); border-right-width: 1px; border-right-co=
lor: #ececef; border-right-style: solid; padding: inherit;" align=3D"righ=
t" bgcolor=3D"#fbfafd">
44
</td>
<td class=3D"line_content" style=3D"padding: inherit;"><pre style=3D'disp=
lay: block; font-size: 14px; color: #3a383f; position: relative; font-fam=
ily: "GitLab Mono", "JetBrains Mono", "Menlo", "DejaVu Sans Mono", "Liber=
ation Mono", "Consolas", "Ubuntu Mono", "Courier New", "andale mono", "lu=
cida console", monospace; font-variant-ligatures: none; word-break: break=
-all; word-wrap: break-word; background-color: inherit; border-radius: 2p=
x; margin: 0; padding: 0; border: inherit solid #dcdcde;'> <span class=3D=
"line" data-lang=3D"smarty">            <span class=3D"nt" style=3D"color=
: #000080;">&lt;/div&gt;</span></span>
</pre></td>
</tr>
<tr class=3D"line_holder" style=3D"line-height: 1.6;">
<td class=3D"old_line diff-line-num" data-linenumber=3D"45" style=3D"widt=
h: 35px; color: rgba(5,5,6,.24); border-right-width: 1px; border-right-co=
lor: #ececef; border-right-style: solid; padding: inherit;" align=3D"righ=
t" bgcolor=3D"#fbfafd">
45
</td>
<td class=3D"new_line diff-line-num" data-linenumber=3D"45" style=3D"widt=
h: 35px; color: rgba(5,5,6,.24); border-right-width: 1px; border-right-co=
lor: #ececef; border-right-style: solid; padding: inherit;" align=3D"righ=
t" bgcolor=3D"#fbfafd">
45
</td>
<td class=3D"line_content" style=3D"padding: inherit;"><pre style=3D'disp=
lay: block; font-size: 14px; color: #3a383f; position: relative; font-fam=
ily: "GitLab Mono", "JetBrains Mono", "Menlo", "DejaVu Sans Mono", "Liber=
ation Mono", "Consolas", "Ubuntu Mono", "Courier New", "andale mono", "lu=
cida console", monospace; font-variant-ligatures: none; word-break: break=
-all; word-wrap: break-word; background-color: inherit; border-radius: 2p=
x; margin: 0; padding: 0; border: inherit solid #dcdcde;'> <span class=3D=
"line" data-lang=3D"smarty">        <span class=3D"nt" style=3D"color: #0=
00080;">&lt;/div&gt;</span></span>
</pre></td>
</tr>
<tr class=3D"line_holder old" style=3D"line-height: 1.6;">
<td class=3D"old_line diff-line-num old" data-linenumber=3D"46" style=3D"=
width: 35px; color: rgba(5,5,6,.24); border-right-width: 1px; border-righ=
t-color: #fac5cd; border-right-style: solid; padding: inherit;" align=3D"=
right" bgcolor=3D"#f9d7dc">
46
</td>
<td class=3D"new_line diff-line-num old" data-linenumber=3D"46" style=3D"=
width: 35px; color: rgba(5,5,6,.24); border-right-width: 1px; border-righ=
t-color: #fac5cd; border-right-style: solid; padding: inherit;" align=3D"=
right" bgcolor=3D"#f9d7dc">
 =

</td>
<td class=3D"line_content old" style=3D"padding: inherit;" bgcolor=3D"#fb=
e9eb"><pre style=3D'display: block; font-size: 14px; color: #3a383f; posi=
tion: relative; font-family: "GitLab Mono", "JetBrains Mono", "Menlo", "D=
ejaVu Sans Mono", "Liberation Mono", "Consolas", "Ubuntu Mono", "Courier =
New", "andale mono", "lucida console", monospace; font-variant-ligatures:=
 none; word-break: break-all; word-wrap: break-word; background-color: in=
herit; border-radius: 2px; margin: 0; padding: 0; border: inherit solid #=
dcdcde;'>-<span class=3D"line" data-lang=3D"smarty">        <span class=3D=
"nt" style=3D"color: #000080;">&lt;div</span> <span class=3D"na" style=3D=
"color: #008080;">class=3D</span><span class=3D"s" style=3D"color: #dd114=
4;">"container</span><span class=3D"k" style=3D"font-weight: 600;">{</spa=
n><span class=3D"nb" style=3D"color: #0086b3;">if</span> <span class=3D"n=
v" style=3D"color: #008080;">$smarty.session.fullscreen</span> <span clas=
s=3D"na" style=3D"color: #008080;">eq</span> <span class=3D"s1" style=3D"=
color: #dd1144;">'y'</span><span class=3D"k" style=3D"font-weight: 600;">=
}</span><span class=3D"s" style=3D"color: #dd1144;">-fluid</span><span cl=
ass=3D"k" style=3D"font-weight: 600;">{/</span><span class=3D"nb" style=3D=
"color: #0086b3;">if</span><span class=3D"k" style=3D"font-weight: 600;">=
}</span><span class=3D"s" style=3D"color: #dd1144;"> container-std middle=
"</span> <span class=3D"na" style=3D"color: #008080;">id=3D</span><span c=
lass=3D"s" style=3D"color: #dd1144;">"middle"</span><span class=3D"nt" st=
yle=3D"color: #000080;">&gt;</span></span>
</pre></td>
</tr>
<tr class=3D"line_holder new" style=3D"line-height: 1.6;">
<td class=3D"old_line diff-line-num new" data-linenumber=3D"47" style=3D"=
width: 35px; color: rgba(5,5,6,.24); border-right-width: 1px; border-righ=
t-color: #c7f0d2; border-right-style: solid; padding: inherit;" align=3D"=
right" bgcolor=3D"#ddfbe6">
 =

</td>
<td class=3D"new_line diff-line-num new" data-linenumber=3D"46" style=3D"=
width: 35px; color: rgba(5,5,6,.24); border-right-width: 1px; border-righ=
t-color: #c7f0d2; border-right-style: solid; padding: inherit;" align=3D"=
right" bgcolor=3D"#ddfbe6">
46
</td>
<td class=3D"line_content new" style=3D"padding: inherit;" bgcolor=3D"#ec=
fdf0"><pre style=3D'display: block; font-size: 14px; color: #3a383f; posi=
tion: relative; font-family: "GitLab Mono", "JetBrains Mono", "Menlo", "D=
ejaVu Sans Mono", "Liberation Mono", "Consolas", "Ubuntu Mono", "Courier =
New", "andale mono", "lucida console", monospace; font-variant-ligatures:=
 none; word-break: break-all; word-wrap: break-word; background-color: in=
herit; border-radius: 2px; margin: 0; padding: 0; border: inherit solid #=
dcdcde;'>+<span class=3D"line" data-lang=3D"smarty">        <span class=3D=
"nt" style=3D"color: #000080;">&lt;div</span> <span class=3D"na" style=3D=
"color: #008080;">class=3D</span><span class=3D"s" style=3D"color: #dd114=
4;">"container</span><span class=3D"k" style=3D"font-weight: 600;">{</spa=
n><span class=3D"nb" style=3D"color: #0086b3;">if</span> <span class=3D"n=
v" style=3D"color: #008080;"><span class=3D"idiff left addition" style=3D=
"background-color: #c7f0d2;">$smarty.session.fullscreen</span></span><spa=
n class=3D"o" style=3D"font-weight: 600;"><span class=3D"idiff addition" =
style=3D"background-color: #c7f0d2;">|</span></span><span class=3D"na" st=
yle=3D"color: #008080;"><span class=3D"idiff addition" style=3D"backgroun=
d-color: #c7f0d2;">isset</span></span><span class=3D"idiff addition" styl=
e=3D"background-color: #c7f0d2;"> </span><span class=3D"o" style=3D"font-=
weight: 600;"><span class=3D"idiff addition" style=3D"background-color: #=
c7f0d2;">&amp;&amp;</span></span><span class=3D"idiff right addition" sty=
le=3D"background-color: #c7f0d2;"> </span><span class=3D"nv" style=3D"col=
or: #008080;">$smarty.session.fullscreen</span> <span class=3D"na" style=3D=
"color: #008080;">eq</span> <span class=3D"s1" style=3D"color: #dd1144;">=
'y'</span><span class=3D"k" style=3D"font-weight: 600;">}</span><span cla=
ss=3D"s" style=3D"color: #dd1144;">-fluid</span><span class=3D"k" style=3D=
"font-weight: 600;">{/</span><span class=3D"nb" style=3D"color: #0086b3;"=
>if</span><span class=3D"k" style=3D"font-weight: 600;">}</span><span cla=
ss=3D"s" style=3D"color: #dd1144;"> container-std middle"</span> <span cl=
ass=3D"na" style=3D"color: #008080;">id=3D</span><span class=3D"s" style=3D=
"color: #dd1144;">"middle"</span><span class=3D"nt" style=3D"color: #0000=
80;">&gt;</span></span>
</pre></td>
</tr>
<tr class=3D"line_holder" style=3D"line-height: 1.6;">
<td class=3D"old_line diff-line-num" data-linenumber=3D"47" style=3D"widt=
h: 35px; color: rgba(5,5,6,.24); border-right-width: 1px; border-right-co=
lor: #ececef; border-right-style: solid; padding: inherit;" align=3D"righ=
t" bgcolor=3D"#fbfafd">
47
</td>
<td class=3D"new_line diff-line-num" data-linenumber=3D"47" style=3D"widt=
h: 35px; color: rgba(5,5,6,.24); border-right-width: 1px; border-right-co=
lor: #ececef; border-right-style: solid; padding: inherit;" align=3D"righ=
t" bgcolor=3D"#fbfafd">
47
</td>
<td class=3D"line_content" style=3D"padding: inherit;"><pre style=3D'disp=
lay: block; font-size: 14px; color: #3a383f; position: relative; font-fam=
ily: "GitLab Mono", "JetBrains Mono", "Menlo", "DejaVu Sans Mono", "Liber=
ation Mono", "Consolas", "Ubuntu Mono", "Courier New", "andale mono", "lu=
cida console", monospace; font-variant-ligatures: none; word-break: break=
-all; word-wrap: break-word; background-color: inherit; border-radius: 2p=
x; margin: 0; padding: 0; border: inherit solid #dcdcde;'> <span class=3D=
"line" data-lang=3D"smarty">            <span class=3D"nt" style=3D"color=
: #000080;">&lt;div</span> <span class=3D"na" style=3D"color: #008080;">c=
lass=3D</span><span class=3D"s" style=3D"color: #dd1144;">"page-content-t=
op-margin"</span>  <span class=3D"na" style=3D"color: #008080;">style=3D<=
/span><span class=3D"s" style=3D"color: #dd1144;">"height: var(--tiki-pag=
e-content-top-margin)"</span><span class=3D"nt" style=3D"color: #000080;"=
>&gt;&lt;/div&gt;</span></span>
</pre></td>
</tr>
<tr class=3D"line_holder" style=3D"line-height: 1.6;">
<td class=3D"old_line diff-line-num" data-linenumber=3D"48" style=3D"widt=
h: 35px; color: rgba(5,5,6,.24); border-right-width: 1px; border-right-co=
lor: #ececef; border-right-style: solid; padding: inherit;" align=3D"righ=
t" bgcolor=3D"#fbfafd">
48
</td>
<td class=3D"new_line diff-line-num" data-linenumber=3D"48" style=3D"widt=
h: 35px; color: rgba(5,5,6,.24); border-right-width: 1px; border-right-co=
lor: #ececef; border-right-style: solid; padding: inherit;" align=3D"righ=
t" bgcolor=3D"#fbfafd">
48
</td>
<td class=3D"line_content" style=3D"padding: inherit;"><pre style=3D'disp=
lay: block; font-size: 14px; color: #3a383f; position: relative; font-fam=
ily: "GitLab Mono", "JetBrains Mono", "Menlo", "DejaVu Sans Mono", "Liber=
ation Mono", "Consolas", "Ubuntu Mono", "Courier New", "andale mono", "lu=
cida console", monospace; font-variant-ligatures: none; word-break: break=
-all; word-wrap: break-word; background-color: inherit; border-radius: 2p=
x; margin: 0; padding: 0; border: inherit solid #dcdcde;'> <span class=3D=
"line" data-lang=3D"smarty">            <span class=3D"nt" style=3D"color=
: #000080;">&lt;div</span> <span class=3D"na" style=3D"color: #008080;">c=
lass=3D</span><span class=3D"s" style=3D"color: #dd1144;">"row row-middle=
"</span> <span class=3D"na" style=3D"color: #008080;">id=3D</span><span c=
lass=3D"s" style=3D"color: #dd1144;">"row-middle"</span><span class=3D"nt=
" style=3D"color: #000080;">&gt;</span></span>
</pre></td>
</tr>
<tr class=3D"line_holder" style=3D"line-height: 1.6;">
<td class=3D"old_line diff-line-num" data-linenumber=3D"49" style=3D"widt=
h: 35px; color: rgba(5,5,6,.24); border-right-width: 1px; border-right-co=
lor: #ececef; border-right-style: solid; padding: inherit;" align=3D"righ=
t" bgcolor=3D"#fbfafd">
49
</td>
<td class=3D"new_line diff-line-num" data-linenumber=3D"49" style=3D"widt=
h: 35px; color: rgba(5,5,6,.24); border-right-width: 1px; border-right-co=
lor: #ececef; border-right-style: solid; padding: inherit;" align=3D"righ=
t" bgcolor=3D"#fbfafd">
49
</td>
<td class=3D"line_content" style=3D"padding: inherit;"><pre style=3D'disp=
lay: block; font-size: 14px; color: #3a383f; position: relative; font-fam=
ily: "GitLab Mono", "JetBrains Mono", "Menlo", "DejaVu Sans Mono", "Liber=
ation Mono", "Consolas", "Ubuntu Mono", "Courier New", "andale mono", "lu=
cida console", monospace; font-variant-ligatures: none; word-break: break=
-all; word-wrap: break-word; background-color: inherit; border-radius: 2p=
x; margin: 0; padding: 0; border: inherit solid #dcdcde;'> <span class=3D=
"line" data-lang=3D"smarty">                <span class=3D"k" style=3D"fo=
nt-weight: 600;">{</span><span class=3D"nb" style=3D"color: #0086b3;">if<=
/span> <span class=3D"o" style=3D"font-weight: 600;">(</span><span class=3D=
"na" style=3D"color: #008080;">zone_is_empty</span><span class=3D"o" styl=
e=3D"font-weight: 600;">(</span><span class=3D"s1" style=3D"color: #dd114=
4;">'left'</span><span class=3D"o" style=3D"font-weight: 600;">)</span> <=
span class=3D"na" style=3D"color: #008080;">or</span> <span class=3D"nv" =
style=3D"color: #008080;">$prefs.feature_left_column</span> <span class=3D=
"na" style=3D"color: #008080;">eq</span> <span class=3D"s1" style=3D"colo=
r: #dd1144;">'n'</span><span class=3D"o" style=3D"font-weight: 600;">)</s=
pan> <span class=3D"na" style=3D"color: #008080;">and</span> <span class=3D=
"o" style=3D"font-weight: 600;">(</span><span class=3D"na" style=3D"color=
: #008080;">zone_is_empty</span><span class=3D"o" style=3D"font-weight: 6=
00;">(</span><span class=3D"s1" style=3D"color: #dd1144;">'right'</span><=
span class=3D"o" style=3D"font-weight: 600;">)</span> <span class=3D"na" =
style=3D"color: #008080;">or</span> <span class=3D"nv" style=3D"color: #0=
08080;">$prefs.feature_right_column</span> <span class=3D"na" style=3D"co=
lor: #008080;">eq</span> <span class=3D"s1" style=3D"color: #dd1144;">'n'=
</span><span class=3D"o" style=3D"font-weight: 600;">)</span><span class=3D=
"k" style=3D"font-weight: 600;">}</span></span>
</pre></td>
</tr>
<tr class=3D"line_holder match" style=3D"line-height: 1.6;">
<td class=3D"diff-line-num unfold js-unfold old_line" data-linenumber=3D"=
204" style=3D"width: 35px; color: rgba(5,5,6,.24); border-right-width: 1p=
x; border-right-color: #ececef; border-right-style: solid; padding: inher=
it;" align=3D"right" bgcolor=3D"#fbfafd">...</td>
<td class=3D"diff-line-num unfold js-unfold new_line" data-linenumber=3D"=
204" style=3D"width: 35px; color: rgba(5,5,6,.24); border-right-width: 1p=
x; border-right-color: #ececef; border-right-style: solid; padding: inher=
it;" align=3D"right" bgcolor=3D"#fbfafd">...</td>
<td class=3D"line_content match" style=3D"color: rgba(5,5,6,.24); padding=
: inherit;" bgcolor=3D"#fbfafd">@@ -204,17 +204,18 @@</td>
</tr>
<tr class=3D"line_holder" style=3D"line-height: 1.6;">
<td class=3D"old_line diff-line-num" data-linenumber=3D"204" style=3D"wid=
th: 35px; color: rgba(5,5,6,.24); border-right-width: 1px; border-right-c=
olor: #ececef; border-right-style: solid; padding: inherit;" align=3D"rig=
ht" bgcolor=3D"#fbfafd">
204
</td>
<td class=3D"new_line diff-line-num" data-linenumber=3D"204" style=3D"wid=
th: 35px; color: rgba(5,5,6,.24); border-right-width: 1px; border-right-c=
olor: #ececef; border-right-style: solid; padding: inherit;" align=3D"rig=
ht" bgcolor=3D"#fbfafd">
204
</td>
<td class=3D"line_content" style=3D"padding: inherit;"><pre style=3D'disp=
lay: block; font-size: 14px; color: #3a383f; position: relative; font-fam=
ily: "GitLab Mono", "JetBrains Mono", "Menlo", "DejaVu Sans Mono", "Liber=
ation Mono", "Consolas", "Ubuntu Mono", "Courier New", "andale mono", "lu=
cida console", monospace; font-variant-ligatures: none; word-break: break=
-all; word-wrap: break-word; background-color: inherit; border-radius: 2p=
x; margin: 0; padding: 0; border: inherit solid #dcdcde;'> <span class=3D=
"line" data-lang=3D"smarty">        <span class=3D"nt" style=3D"color: #0=
00080;">&lt;/div&gt;</span> <span class=3D"c" style=3D"color: #999988; fo=
nt-style: italic;">{* container middle *}</span></span>
</pre></td>
</tr>
<tr class=3D"line_holder" style=3D"line-height: 1.6;">
<td class=3D"old_line diff-line-num" data-linenumber=3D"205" style=3D"wid=
th: 35px; color: rgba(5,5,6,.24); border-right-width: 1px; border-right-c=
olor: #ececef; border-right-style: solid; padding: inherit;" align=3D"rig=
ht" bgcolor=3D"#fbfafd">
205
</td>
<td class=3D"new_line diff-line-num" data-linenumber=3D"205" style=3D"wid=
th: 35px; color: rgba(5,5,6,.24); border-right-width: 1px; border-right-c=
olor: #ececef; border-right-style: solid; padding: inherit;" align=3D"rig=
ht" bgcolor=3D"#fbfafd">
205
</td>
<td class=3D"line_content" style=3D"padding: inherit;"><pre style=3D'disp=
lay: block; font-size: 14px; color: #3a383f; position: relative; font-fam=
ily: "GitLab Mono", "JetBrains Mono", "Menlo", "DejaVu Sans Mono", "Liber=
ation Mono", "Consolas", "Ubuntu Mono", "Courier New", "andale mono", "lu=
cida console", monospace; font-variant-ligatures: none; word-break: break=
-all; word-wrap: break-word; background-color: inherit; border-radius: 2p=
x; margin: 0; padding: 0; border: inherit solid #dcdcde;'> <span class=3D=
"line" data-lang=3D"smarty">    <span class=3D"nt" style=3D"color: #00008=
0;">&lt;/div&gt;</span> <span class=3D"c" style=3D"color: #999988; font-s=
tyle: italic;">{* middle_outer - was missing *}</span></span>
</pre></td>
</tr>
<tr class=3D"line_holder" style=3D"line-height: 1.6;">
<td class=3D"old_line diff-line-num" data-linenumber=3D"206" style=3D"wid=
th: 35px; color: rgba(5,5,6,.24); border-right-width: 1px; border-right-c=
olor: #ececef; border-right-style: solid; padding: inherit;" align=3D"rig=
ht" bgcolor=3D"#fbfafd">
206
</td>
<td class=3D"new_line diff-line-num" data-linenumber=3D"206" style=3D"wid=
th: 35px; color: rgba(5,5,6,.24); border-right-width: 1px; border-right-c=
olor: #ececef; border-right-style: solid; padding: inherit;" align=3D"rig=
ht" bgcolor=3D"#fbfafd">
206
</td>
<td class=3D"line_content" style=3D"padding: inherit;"><pre style=3D'disp=
lay: block; font-size: 14px; color: #3a383f; position: relative; font-fam=
ily: "GitLab Mono", "JetBrains Mono", "Menlo", "DejaVu Sans Mono", "Liber=
ation Mono", "Consolas", "Ubuntu Mono", "Courier New", "andale mono", "lu=
cida console", monospace; font-variant-ligatures: none; word-break: break=
-all; word-wrap: break-word; background-color: inherit; border-radius: 2p=
x; margin: 0; padding: 0; border: inherit solid #dcdcde;'> <span class=3D=
"line" data-lang=3D"smarty">    <span class=3D"k" style=3D"font-weight: 6=
00;">{</span><span class=3D"nb" style=3D"color: #0086b3;">if</span> <span=
 class=3D"o" style=3D"font-weight: 600;">!</span><span class=3D"na" style=
=3D"color: #008080;">isset</span><span class=3D"o" style=3D"font-weight: =
600;">(</span><span class=3D"nv" style=3D"color: #008080;">$smarty.sessio=
n.fullscreen</span><span class=3D"o" style=3D"font-weight: 600;">)</span>=
 <span class=3D"o" style=3D"font-weight: 600;">||</span> <span class=3D"n=
v" style=3D"color: #008080;">$smarty.session.fullscreen</span> <span clas=
s=3D"na" style=3D"color: #008080;">ne</span> <span class=3D"s1" style=3D"=
color: #dd1144;">'y'</span><span class=3D"k" style=3D"font-weight: 600;">=
}</span></span>
</pre></td>
</tr>
<tr class=3D"line_holder old" style=3D"line-height: 1.6;">
<td class=3D"old_line diff-line-num old" data-linenumber=3D"207" style=3D=
"width: 35px; color: rgba(5,5,6,.24); border-right-width: 1px; border-rig=
ht-color: #fac5cd; border-right-style: solid; padding: inherit;" align=3D=
"right" bgcolor=3D"#f9d7dc">
207
</td>
<td class=3D"new_line diff-line-num old" data-linenumber=3D"207" style=3D=
"width: 35px; color: rgba(5,5,6,.24); border-right-width: 1px; border-rig=
ht-color: #fac5cd; border-right-style: solid; padding: inherit;" align=3D=
"right" bgcolor=3D"#f9d7dc">
 =

</td>
<td class=3D"line_content old" style=3D"padding: inherit;" bgcolor=3D"#fb=
e9eb"><pre style=3D'display: block; font-size: 14px; color: #3a383f; posi=
tion: relative; font-family: "GitLab Mono", "JetBrains Mono", "Menlo", "D=
ejaVu Sans Mono", "Liberation Mono", "Consolas", "Ubuntu Mono", "Courier =
New", "andale mono", "lucida console", monospace; font-variant-ligatures:=
 none; word-break: break-all; word-wrap: break-word; background-color: in=
herit; border-radius: 2px; margin: 0; padding: 0; border: inherit solid #=
dcdcde;'>-<span class=3D"line" data-lang=3D"smarty">    <span class=3D"k"=
 style=3D"font-weight: 600;">{</span><span class=3D"nb" style=3D"color: #=
0086b3;">if</span> <span class=3D"nv" style=3D"color: #008080;">$prefs.fe=
ature_layoutshadows</span> <span class=3D"na" style=3D"color: #008080;">e=
q</span> <span class=3D"s1" style=3D"color: #dd1144;">'y'</span><span cla=
ss=3D"k" style=3D"font-weight: 600;">}</span></span>
</pre></td>
</tr>
<tr class=3D"line_holder old" style=3D"line-height: 1.6;">
<td class=3D"old_line diff-line-num old" data-linenumber=3D"208" style=3D=
"width: 35px; color: rgba(5,5,6,.24); border-right-width: 1px; border-rig=
ht-color: #fac5cd; border-right-style: solid; padding: inherit;" align=3D=
"right" bgcolor=3D"#f9d7dc">
208
</td>
<td class=3D"new_line diff-line-num old" data-linenumber=3D"207" style=3D=
"width: 35px; color: rgba(5,5,6,.24); border-right-width: 1px; border-rig=
ht-color: #fac5cd; border-right-style: solid; padding: inherit;" align=3D=
"right" bgcolor=3D"#f9d7dc">
 =

</td>
<td class=3D"line_content old" style=3D"padding: inherit;" bgcolor=3D"#fb=
e9eb"><pre style=3D'display: block; font-size: 14px; color: #3a383f; posi=
tion: relative; font-family: "GitLab Mono", "JetBrains Mono", "Menlo", "D=
ejaVu Sans Mono", "Liberation Mono", "Consolas", "Ubuntu Mono", "Courier =
New", "andale mono", "lucida console", monospace; font-variant-ligatures:=
 none; word-break: break-all; word-wrap: break-word; background-color: in=
herit; border-radius: 2px; margin: 0; padding: 0; border: inherit solid #=
dcdcde;'>-<span class=3D"line" data-lang=3D"smarty">    <span class=3D"nt=
" style=3D"color: #000080;">&lt;div</span> <span class=3D"na" style=3D"co=
lor: #008080;">id=3D</span><span class=3D"s" style=3D"color: #dd1144;">"f=
ooter-shadow"</span><span class=3D"nt" style=3D"color: #000080;">&gt;</sp=
an><span class=3D"k" style=3D"font-weight: 600;">{</span><span class=3D"n=
b" style=3D"color: #0086b3;">eval</span> <span class=3D"na" style=3D"colo=
r: #008080;">var</span><span class=3D"o" style=3D"font-weight: 600;">=3D<=
/span><span class=3D"nv" style=3D"color: #008080;">$prefs.footer_shadow_s=
tart</span><span class=3D"k" style=3D"font-weight: 600;">}{/</span><span =
class=3D"nb" style=3D"color: #0086b3;">if</span><span class=3D"k" style=3D=
"font-weight: 600;">}</span></span>
</pre></td>
</tr>
<tr class=3D"line_holder new" style=3D"line-height: 1.6;">
<td class=3D"old_line diff-line-num new" data-linenumber=3D"209" style=3D=
"width: 35px; color: rgba(5,5,6,.24); border-right-width: 1px; border-rig=
ht-color: #c7f0d2; border-right-style: solid; padding: inherit;" align=3D=
"right" bgcolor=3D"#ddfbe6">
 =

</td>
<td class=3D"new_line diff-line-num new" data-linenumber=3D"207" style=3D=
"width: 35px; color: rgba(5,5,6,.24); border-right-width: 1px; border-rig=
ht-color: #c7f0d2; border-right-style: solid; padding: inherit;" align=3D=
"right" bgcolor=3D"#ddfbe6">
207
</td>
<td class=3D"line_content new" style=3D"padding: inherit;" bgcolor=3D"#ec=
fdf0"><pre style=3D'display: block; font-size: 14px; color: #3a383f; posi=
tion: relative; font-family: "GitLab Mono", "JetBrains Mono", "Menlo", "D=
ejaVu Sans Mono", "Liberation Mono", "Consolas", "Ubuntu Mono", "Courier =
New", "andale mono", "lucida console", monospace; font-variant-ligatures:=
 none; word-break: break-all; word-wrap: break-word; background-color: in=
herit; border-radius: 2px; margin: 0; padding: 0; border: inherit solid #=
dcdcde;'>+<span class=3D"line" data-lang=3D"smarty">        <span class=3D=
"k" style=3D"font-weight: 600;">{</span><span class=3D"nb" style=3D"color=
: #0086b3;">if</span> <span class=3D"nv" style=3D"color: #008080;">$prefs=
.feature_layoutshadows</span> <span class=3D"na" style=3D"color: #008080;=
">eq</span> <span class=3D"s1" style=3D"color: #dd1144;">'y'</span><span =
class=3D"k" style=3D"font-weight: 600;">}</span></span>
</pre></td>
</tr>
<tr class=3D"line_holder new" style=3D"line-height: 1.6;">
<td class=3D"old_line diff-line-num new" data-linenumber=3D"209" style=3D=
"width: 35px; color: rgba(5,5,6,.24); border-right-width: 1px; border-rig=
ht-color: #c7f0d2; border-right-style: solid; padding: inherit;" align=3D=
"right" bgcolor=3D"#ddfbe6">
 =

</td>
<td class=3D"new_line diff-line-num new" data-linenumber=3D"208" style=3D=
"width: 35px; color: rgba(5,5,6,.24); border-right-width: 1px; border-rig=
ht-color: #c7f0d2; border-right-style: solid; padding: inherit;" align=3D=
"right" bgcolor=3D"#ddfbe6">
208
</td>
<td class=3D"line_content new" style=3D"padding: inherit;" bgcolor=3D"#ec=
fdf0"><pre style=3D'display: block; font-size: 14px; color: #3a383f; posi=
tion: relative; font-family: "GitLab Mono", "JetBrains Mono", "Menlo", "D=
ejaVu Sans Mono", "Liberation Mono", "Consolas", "Ubuntu Mono", "Courier =
New", "andale mono", "lucida console", monospace; font-variant-ligatures:=
 none; word-break: break-all; word-wrap: break-word; background-color: in=
herit; border-radius: 2px; margin: 0; padding: 0; border: inherit solid #=
dcdcde;'>+<span class=3D"line" data-lang=3D"smarty">            <span cla=
ss=3D"nt" style=3D"color: #000080;">&lt;div</span> <span class=3D"na" sty=
le=3D"color: #008080;">id=3D</span><span class=3D"s" style=3D"color: #dd1=
144;">"footer-shadow"</span><span class=3D"nt" style=3D"color: #000080;">=
&gt;</span><span class=3D"k" style=3D"font-weight: 600;">{</span><span cl=
ass=3D"nb" style=3D"color: #0086b3;">eval</span> <span class=3D"na" style=
=3D"color: #008080;">var</span><span class=3D"o" style=3D"font-weight: 60=
0;">=3D</span><span class=3D"nv" style=3D"color: #008080;">$prefs.footer_=
shadow_start</span><span class=3D"k" style=3D"font-weight: 600;">}</span>=
</span>
</pre></td>
</tr>
<tr class=3D"line_holder new" style=3D"line-height: 1.6;">
<td class=3D"old_line diff-line-num new" data-linenumber=3D"209" style=3D=
"width: 35px; color: rgba(5,5,6,.24); border-right-width: 1px; border-rig=
ht-color: #c7f0d2; border-right-style: solid; padding: inherit;" align=3D=
"right" bgcolor=3D"#ddfbe6">
 =

</td>
<td class=3D"new_line diff-line-num new" data-linenumber=3D"209" style=3D=
"width: 35px; color: rgba(5,5,6,.24); border-right-width: 1px; border-rig=
ht-color: #c7f0d2; border-right-style: solid; padding: inherit;" align=3D=
"right" bgcolor=3D"#ddfbe6">
209
</td>
<td class=3D"line_content new" style=3D"padding: inherit;" bgcolor=3D"#ec=
fdf0"><pre style=3D'display: block; font-size: 14px; color: #3a383f; posi=
tion: relative; font-family: "GitLab Mono", "JetBrains Mono", "Menlo", "D=
ejaVu Sans Mono", "Liberation Mono", "Consolas", "Ubuntu Mono", "Courier =
New", "andale mono", "lucida console", monospace; font-variant-ligatures:=
 none; word-break: break-all; word-wrap: break-word; background-color: in=
herit; border-radius: 2px; margin: 0; padding: 0; border: inherit solid #=
dcdcde;'>+<span class=3D"line" data-lang=3D"smarty">        <span class=3D=
"k" style=3D"font-weight: 600;">{/</span><span class=3D"nb" style=3D"colo=
r: #0086b3;">if</span><span class=3D"k" style=3D"font-weight: 600;">}</sp=
an></span>
</pre></td>
</tr>
<tr class=3D"line_holder" style=3D"line-height: 1.6;">
<td class=3D"old_line diff-line-num" data-linenumber=3D"209" style=3D"wid=
th: 35px; color: rgba(5,5,6,.24); border-right-width: 1px; border-right-c=
olor: #ececef; border-right-style: solid; padding: inherit;" align=3D"rig=
ht" bgcolor=3D"#fbfafd">
209
</td>
<td class=3D"new_line diff-line-num" data-linenumber=3D"210" style=3D"wid=
th: 35px; color: rgba(5,5,6,.24); border-right-width: 1px; border-right-c=
olor: #ececef; border-right-style: solid; padding: inherit;" align=3D"rig=
ht" bgcolor=3D"#fbfafd">
210
</td>
<td class=3D"line_content" style=3D"padding: inherit;"><pre style=3D'disp=
lay: block; font-size: 14px; color: #3a383f; position: relative; font-fam=
ily: "GitLab Mono", "JetBrains Mono", "Menlo", "DejaVu Sans Mono", "Liber=
ation Mono", "Consolas", "Ubuntu Mono", "Courier New", "andale mono", "lu=
cida console", monospace; font-variant-ligatures: none; word-break: break=
-all; word-wrap: break-word; background-color: inherit; border-radius: 2p=
x; margin: 0; padding: 0; border: inherit solid #dcdcde;'> <span class=3D=
"line" data-lang=3D"smarty">        <span class=3D"nt" style=3D"color: #0=
00080;">&lt;footer</span> <span class=3D"na" style=3D"color: #008080;">cl=
ass=3D</span><span class=3D"s" style=3D"color: #dd1144;">"footer main-foo=
ter mt-auto"</span> <span class=3D"na" style=3D"color: #008080;">id=3D</s=
pan><span class=3D"s" style=3D"color: #dd1144;">"footer"</span><span clas=
s=3D"nt" style=3D"color: #000080;">&gt;</span></span>
</pre></td>
</tr>
<tr class=3D"line_holder" style=3D"line-height: 1.6;">
<td class=3D"old_line diff-line-num" data-linenumber=3D"210" style=3D"wid=
th: 35px; color: rgba(5,5,6,.24); border-right-width: 1px; border-right-c=
olor: #ececef; border-right-style: solid; padding: inherit;" align=3D"rig=
ht" bgcolor=3D"#fbfafd">
210
</td>
<td class=3D"new_line diff-line-num" data-linenumber=3D"211" style=3D"wid=
th: 35px; color: rgba(5,5,6,.24); border-right-width: 1px; border-right-c=
olor: #ececef; border-right-style: solid; padding: inherit;" align=3D"rig=
ht" bgcolor=3D"#fbfafd">
211
</td>
<td class=3D"line_content" style=3D"padding: inherit;"><pre style=3D'disp=
lay: block; font-size: 14px; color: #3a383f; position: relative; font-fam=
ily: "GitLab Mono", "JetBrains Mono", "Menlo", "DejaVu Sans Mono", "Liber=
ation Mono", "Consolas", "Ubuntu Mono", "Courier New", "andale mono", "lu=
cida console", monospace; font-variant-ligatures: none; word-break: break=
-all; word-wrap: break-word; background-color: inherit; border-radius: 2p=
x; margin: 0; padding: 0; border: inherit solid #dcdcde;'> <span class=3D=
"line" data-lang=3D"smarty">            <span class=3D"nt" style=3D"color=
: #000080;">&lt;div</span> <span class=3D"na" style=3D"color: #008080;">c=
lass=3D</span><span class=3D"s" style=3D"color: #dd1144;">"footer_liner"<=
/span><span class=3D"nt" style=3D"color: #000080;">&gt;</span></span>
</pre></td>
</tr>
<tr class=3D"line_holder old" style=3D"line-height: 1.6;">
<td class=3D"old_line diff-line-num old" data-linenumber=3D"211" style=3D=
"width: 35px; color: rgba(5,5,6,.24); border-right-width: 1px; border-rig=
ht-color: #fac5cd; border-right-style: solid; padding: inherit;" align=3D=
"right" bgcolor=3D"#f9d7dc">
211
</td>
<td class=3D"new_line diff-line-num old" data-linenumber=3D"212" style=3D=
"width: 35px; color: rgba(5,5,6,.24); border-right-width: 1px; border-rig=
ht-color: #fac5cd; border-right-style: solid; padding: inherit;" align=3D=
"right" bgcolor=3D"#f9d7dc">
 =

</td>
<td class=3D"line_content old" style=3D"padding: inherit;" bgcolor=3D"#fb=
e9eb"><pre style=3D'display: block; font-size: 14px; color: #3a383f; posi=
tion: relative; font-family: "GitLab Mono", "JetBrains Mono", "Menlo", "D=
ejaVu Sans Mono", "Liberation Mono", "Consolas", "Ubuntu Mono", "Courier =
New", "andale mono", "lucida console", monospace; font-variant-ligatures:=
 none; word-break: break-all; word-wrap: break-word; background-color: in=
herit; border-radius: 2px; margin: 0; padding: 0; border: inherit solid #=
dcdcde;'>-<span class=3D"line" data-lang=3D"smarty">                <span=
 class=3D"nt" style=3D"color: #000080;">&lt;div</span> <span class=3D"na"=
 style=3D"color: #008080;">class=3D</span><span class=3D"s" style=3D"colo=
r: #dd1144;">"container</span><span class=3D"k" style=3D"font-weight: 600=
;">{</span><span class=3D"nb" style=3D"color: #0086b3;">if</span> <span c=
lass=3D"nv" style=3D"color: #008080;">$smarty.session.fullscreen</span><s=
pan class=3D"idiff left deletion" style=3D"background-color: #fac5cd;"> <=
/span><span class=3D"na" style=3D"color: #008080;"><span class=3D"idiff d=
eletion" style=3D"background-color: #fac5cd;">eq</span></span><span class=
=3D"idiff deletion" style=3D"background-color: #fac5cd;"> </span><span cl=
ass=3D"s1" style=3D"color: #dd1144;"><span class=3D"idiff deletion" style=
=3D"background-color: #fac5cd;">'y'</span></span><span class=3D"k" style=3D=
"font-weight: 600;"><span class=3D"idiff deletion" style=3D"background-co=
lor: #fac5cd;">}</span></span><span class=3D"s" style=3D"color: #dd1144;"=
><span class=3D"idiff deletion" style=3D"background-color: #fac5cd;">-flu=
id</span></span><span class=3D"k" style=3D"font-weight: 600;"><span class=
=3D"idiff deletion" style=3D"background-color: #fac5cd;">{/</span></span>=
<span class=3D"nb" style=3D"color: #0086b3;"><span class=3D"idiff deletio=
n" style=3D"background-color: #fac5cd;">if</span></span><span class=3D"k"=
 style=3D"font-weight: 600;"><span class=3D"idiff deletion" style=3D"back=
ground-color: #fac5cd;">}</span></span><span class=3D"s" style=3D"color: =
#dd1144;"><span class=3D"idiff deletion" style=3D"background-color: #fac5=
cd;"> container-std"</span></span><span class=3D"nt" style=3D"color: #000=
080;"><span class=3D"idiff right deletion" style=3D"background-color: #fa=
c5cd;">&gt;</span></span></span>
</pre></td>
</tr>
<tr class=3D"line_holder new" style=3D"line-height: 1.6;">
<td class=3D"old_line diff-line-num new" data-linenumber=3D"212" style=3D=
"width: 35px; color: rgba(5,5,6,.24); border-right-width: 1px; border-rig=
ht-color: #c7f0d2; border-right-style: solid; padding: inherit;" align=3D=
"right" bgcolor=3D"#ddfbe6">
 =

</td>
<td class=3D"new_line diff-line-num new" data-linenumber=3D"212" style=3D=
"width: 35px; color: rgba(5,5,6,.24); border-right-width: 1px; border-rig=
ht-color: #c7f0d2; border-right-style: solid; padding: inherit;" align=3D=
"right" bgcolor=3D"#ddfbe6">
212
</td>
<td class=3D"line_content new" style=3D"padding: inherit;" bgcolor=3D"#ec=
fdf0"><pre style=3D'display: block; font-size: 14px; color: #3a383f; posi=
tion: relative; font-family: "GitLab Mono", "JetBrains Mono", "Menlo", "D=
ejaVu Sans Mono", "Liberation Mono", "Consolas", "Ubuntu Mono", "Courier =
New", "andale mono", "lucida console", monospace; font-variant-ligatures:=
 none; word-break: break-all; word-wrap: break-word; background-color: in=
herit; border-radius: 2px; margin: 0; padding: 0; border: inherit solid #=
dcdcde;'>+<span class=3D"line" data-lang=3D"smarty">                <span=
 class=3D"nt" style=3D"color: #000080;">&lt;div</span> <span class=3D"na"=
 style=3D"color: #008080;">class=3D</span><span class=3D"s" style=3D"colo=
r: #dd1144;">"container</span><span class=3D"k" style=3D"font-weight: 600=
;">{</span><span class=3D"nb" style=3D"color: #0086b3;">if</span> <span c=
lass=3D"nv" style=3D"color: #008080;">$smarty.session.fullscreen</span><s=
pan class=3D"o" style=3D"font-weight: 600;"><span class=3D"idiff left add=
ition" style=3D"background-color: #c7f0d2;">|</span></span><span class=3D=
"na" style=3D"color: #008080;"><span class=3D"idiff addition" style=3D"ba=
ckground-color: #c7f0d2;">isset</span></span><span class=3D"idiff additio=
n" style=3D"background-color: #c7f0d2;"> </span><span class=3D"o" style=3D=
"font-weight: 600;"><span class=3D"idiff addition" style=3D"background-co=
lor: #c7f0d2;">&amp;&amp;</span></span><span class=3D"idiff addition" sty=
le=3D"background-color: #c7f0d2;"> </span><span class=3D"nv" style=3D"col=
or: #008080;"><span class=3D"idiff addition" style=3D"background-color: #=
c7f0d2;">$smarty.session.fullscreen</span></span><span class=3D"idiff add=
ition" style=3D"background-color: #c7f0d2;"> </span><span class=3D"na" st=
yle=3D"color: #008080;"><span class=3D"idiff addition" style=3D"backgroun=
d-color: #c7f0d2;">eq</span></span><span class=3D"idiff addition" style=3D=
"background-color: #c7f0d2;"> </span><span class=3D"s1" style=3D"color: #=
dd1144;"><span class=3D"idiff addition" style=3D"background-color: #c7f0d=
2;">'y'</span></span><span class=3D"k" style=3D"font-weight: 600;"><span =
class=3D"idiff addition" style=3D"background-color: #c7f0d2;">}</span></s=
pan><span class=3D"s" style=3D"color: #dd1144;"><span class=3D"idiff addi=
tion" style=3D"background-color: #c7f0d2;">-fluid</span></span><span clas=
s=3D"k" style=3D"font-weight: 600;"><span class=3D"idiff addition" style=3D=
"background-color: #c7f0d2;">{/</span></span><span class=3D"nb" style=3D"=
color: #0086b3;"><span class=3D"idiff addition" style=3D"background-color=
: #c7f0d2;">if</span></span><span class=3D"k" style=3D"font-weight: 600;"=
><span class=3D"idiff addition" style=3D"background-color: #c7f0d2;">}</s=
pan></span><span class=3D"s" style=3D"color: #dd1144;"><span class=3D"idi=
ff addition" style=3D"background-color: #c7f0d2;"> container-std"</span><=
/span><span class=3D"nt" style=3D"color: #000080;"><span class=3D"idiff a=
ddition" style=3D"background-color: #c7f0d2;">&gt;</span></span><span cla=
ss=3D"idiff addition" style=3D"background-color: #c7f0d2;"> </span><span =
class=3D"c" style=3D"color: #999988; font-style: italic;"><span class=3D"=
idiff right addition" style=3D"background-color: #c7f0d2;">{* The if on t=
his line is unreachable code.  We are in a larger block that won't execut=
e if fullscreen if off.  I do not know what the intent is - benoitg - 202=
6-07-31 *}</span></span></span>
</pre></td>
</tr>
<tr class=3D"line_holder" style=3D"line-height: 1.6;">
<td class=3D"old_line diff-line-num" data-linenumber=3D"212" style=3D"wid=
th: 35px; color: rgba(5,5,6,.24); border-right-width: 1px; border-right-c=
olor: #ececef; border-right-style: solid; padding: inherit;" align=3D"rig=
ht" bgcolor=3D"#fbfafd">
212
</td>
<td class=3D"new_line diff-line-num" data-linenumber=3D"213" style=3D"wid=
th: 35px; color: rgba(5,5,6,.24); border-right-width: 1px; border-right-c=
olor: #ececef; border-right-style: solid; padding: inherit;" align=3D"rig=
ht" bgcolor=3D"#fbfafd">
213
</td>
<td class=3D"line_content" style=3D"padding: inherit;"><pre style=3D'disp=
lay: block; font-size: 14px; color: #3a383f; position: relative; font-fam=
ily: "GitLab Mono", "JetBrains Mono", "Menlo", "DejaVu Sans Mono", "Liber=
ation Mono", "Consolas", "Ubuntu Mono", "Courier New", "andale mono", "lu=
cida console", monospace; font-variant-ligatures: none; word-break: break=
-all; word-wrap: break-word; background-color: inherit; border-radius: 2p=
x; margin: 0; padding: 0; border: inherit solid #dcdcde;'> <span class=3D=
"line" data-lang=3D"smarty">                    <span class=3D"k" style=3D=
"font-weight: 600;">{</span><span class=3D"na" style=3D"color: #008080;">=
modulelist</span> <span class=3D"na" style=3D"color: #008080;">zone</span=
><span class=3D"o" style=3D"font-weight: 600;">=3D</span><span class=3D"n=
a" style=3D"color: #008080;">bottom</span> <span class=3D"na" style=3D"co=
lor: #008080;">class</span><span class=3D"o" style=3D"font-weight: 600;">=
=3D</span><span class=3D"s1" style=3D"color: #dd1144;">'bottom_modules p-=
3 mx-n2point5'</span> <span class=3D"na" style=3D"color: #008080;">headin=
g_text</span><span class=3D"o" style=3D"font-weight: 600;">=3D</span><spa=
n class=3D"s1" style=3D"color: #dd1144;">'{tr}Site information, links, et=
c.{/tr}'</span> <span class=3D"na" style=3D"color: #008080;">role</span><=
span class=3D"o" style=3D"font-weight: 600;">=3D</span><span class=3D"na"=
 style=3D"color: #008080;">contentinfo</span><span class=3D"k" style=3D"f=
ont-weight: 600;">}</span></span>
</pre></td>
</tr>
<tr class=3D"line_holder" style=3D"line-height: 1.6;">
<td class=3D"old_line diff-line-num" data-linenumber=3D"213" style=3D"wid=
th: 35px; color: rgba(5,5,6,.24); border-right-width: 1px; border-right-c=
olor: #ececef; border-right-style: solid; padding: inherit;" align=3D"rig=
ht" bgcolor=3D"#fbfafd">
213
</td>
<td class=3D"new_line diff-line-num" data-linenumber=3D"214" style=3D"wid=
th: 35px; color: rgba(5,5,6,.24); border-right-width: 1px; border-right-c=
olor: #ececef; border-right-style: solid; padding: inherit;" align=3D"rig=
ht" bgcolor=3D"#fbfafd">
214
</td>
<td class=3D"line_content" style=3D"padding: inherit;"><pre style=3D'disp=
lay: block; font-size: 14px; color: #3a383f; position: relative; font-fam=
ily: "GitLab Mono", "JetBrains Mono", "Menlo", "DejaVu Sans Mono", "Liber=
ation Mono", "Consolas", "Ubuntu Mono", "Courier New", "andale mono", "lu=
cida console", monospace; font-variant-ligatures: none; word-break: break=
-all; word-wrap: break-word; background-color: inherit; border-radius: 2p=
x; margin: 0; padding: 0; border: inherit solid #dcdcde;'> <span class=3D=
"line" data-lang=3D"smarty">                <span class=3D"nt" style=3D"c=
olor: #000080;">&lt;/div&gt;</span></span>
</pre></td>
</tr>
<tr class=3D"line_holder" style=3D"line-height: 1.6;">
<td class=3D"old_line diff-line-num" data-linenumber=3D"214" style=3D"wid=
th: 35px; color: rgba(5,5,6,.24); border-right-width: 1px; border-right-c=
olor: #ececef; border-right-style: solid; padding: inherit;" align=3D"rig=
ht" bgcolor=3D"#fbfafd">
214
</td>
<td class=3D"new_line diff-line-num" data-linenumber=3D"215" style=3D"wid=
th: 35px; color: rgba(5,5,6,.24); border-right-width: 1px; border-right-c=
olor: #ececef; border-right-style: solid; padding: inherit;" align=3D"rig=
ht" bgcolor=3D"#fbfafd">
215
</td>
<td class=3D"line_content" style=3D"padding: inherit;"><pre style=3D'disp=
lay: block; font-size: 14px; color: #3a383f; position: relative; font-fam=
ily: "GitLab Mono", "JetBrains Mono", "Menlo", "DejaVu Sans Mono", "Liber=
ation Mono", "Consolas", "Ubuntu Mono", "Courier New", "andale mono", "lu=
cida console", monospace; font-variant-ligatures: none; word-break: break=
-all; word-wrap: break-word; background-color: inherit; border-radius: 2p=
x; margin: 0; padding: 0; border: inherit solid #dcdcde;'> <span class=3D=
"line" data-lang=3D"smarty">            <span class=3D"nt" style=3D"color=
: #000080;">&lt;/div&gt;</span></span>
</pre></td>
</tr>
<tr class=3D"line_holder" style=3D"line-height: 1.6;">
<td class=3D"old_line diff-line-num" data-linenumber=3D"215" style=3D"wid=
th: 35px; color: rgba(5,5,6,.24); border-right-width: 1px; border-right-c=
olor: #ececef; border-right-style: solid; padding: inherit;" align=3D"rig=
ht" bgcolor=3D"#fbfafd">
215
</td>
<td class=3D"new_line diff-line-num" data-linenumber=3D"216" style=3D"wid=
th: 35px; color: rgba(5,5,6,.24); border-right-width: 1px; border-right-c=
olor: #ececef; border-right-style: solid; padding: inherit;" align=3D"rig=
ht" bgcolor=3D"#fbfafd">
216
</td>
<td class=3D"line_content" style=3D"padding: inherit;"><pre style=3D'disp=
lay: block; font-size: 14px; color: #3a383f; position: relative; font-fam=
ily: "GitLab Mono", "JetBrains Mono", "Menlo", "DejaVu Sans Mono", "Liber=
ation Mono", "Consolas", "Ubuntu Mono", "Courier New", "andale mono", "lu=
cida console", monospace; font-variant-ligatures: none; word-break: break=
-all; word-wrap: break-word; background-color: inherit; border-radius: 2p=
x; margin: 0; padding: 0; border: inherit solid #dcdcde;'> <span class=3D=
"line" data-lang=3D"smarty">        <span class=3D"nt" style=3D"color: #0=
00080;">&lt;/footer&gt;</span></span>
</pre></td>
</tr>
<tr class=3D"line_holder" style=3D"line-height: 1.6;">
<td class=3D"old_line diff-line-num" data-linenumber=3D"216" style=3D"wid=
th: 35px; color: rgba(5,5,6,.24); border-right-width: 1px; border-right-c=
olor: #ececef; border-right-style: solid; padding: inherit;" align=3D"rig=
ht" bgcolor=3D"#fbfafd">
216
</td>
<td class=3D"new_line diff-line-num" data-linenumber=3D"217" style=3D"wid=
th: 35px; color: rgba(5,5,6,.24); border-right-width: 1px; border-right-c=
olor: #ececef; border-right-style: solid; padding: inherit;" align=3D"rig=
ht" bgcolor=3D"#fbfafd">
217
</td>
<td class=3D"line_content" style=3D"padding: inherit;"><pre style=3D'disp=
lay: block; font-size: 14px; color: #3a383f; position: relative; font-fam=
ily: "GitLab Mono", "JetBrains Mono", "Menlo", "DejaVu Sans Mono", "Liber=
ation Mono", "Consolas", "Ubuntu Mono", "Courier New", "andale mono", "lu=
cida console", monospace; font-variant-ligatures: none; word-break: break=
-all; word-wrap: break-word; background-color: inherit; border-radius: 2p=
x; margin: 0; padding: 0; border: inherit solid #dcdcde;'> <span class=3D=
"line" data-lang=3D"smarty">        <span class=3D"k" style=3D"font-weigh=
t: 600;">{</span><span class=3D"nb" style=3D"color: #0086b3;">if</span> <=
span class=3D"nv" style=3D"color: #008080;">$prefs.feature_layoutshadows<=
/span> <span class=3D"na" style=3D"color: #008080;">eq</span> <span class=
=3D"s1" style=3D"color: #dd1144;">'y'</span><span class=3D"k" style=3D"fo=
nt-weight: 600;">}{</span><span class=3D"nb" style=3D"color: #0086b3;">ev=
al</span> <span class=3D"na" style=3D"color: #008080;">var</span><span cl=
ass=3D"o" style=3D"font-weight: 600;">=3D</span><span class=3D"nv" style=3D=
"color: #008080;">$prefs.footer_shadow_end</span><span class=3D"k" style=3D=
"font-weight: 600;">}</span><span class=3D"nt" style=3D"color: #000080;">=
&lt;/div&gt;</span><span class=3D"k" style=3D"font-weight: 600;">{/</span=
><span class=3D"nb" style=3D"color: #0086b3;">if</span><span class=3D"k" =
style=3D"font-weight: 600;">}</span></span>
</pre></td>
</tr>
<tr class=3D"line_holder old" style=3D"line-height: 1.6;">
<td class=3D"old_line diff-line-num old" data-linenumber=3D"217" style=3D=
"width: 35px; color: rgba(5,5,6,.24); border-right-width: 1px; border-rig=
ht-color: #fac5cd; border-right-style: solid; padding: inherit;" align=3D=
"right" bgcolor=3D"#f9d7dc">
217
</td>
<td class=3D"new_line diff-line-num old" data-linenumber=3D"218" style=3D=
"width: 35px; color: rgba(5,5,6,.24); border-right-width: 1px; border-rig=
ht-color: #fac5cd; border-right-style: solid; padding: inherit;" align=3D=
"right" bgcolor=3D"#f9d7dc">
 =

</td>
<td class=3D"line_content old" style=3D"padding: inherit;" bgcolor=3D"#fb=
e9eb"><pre style=3D'display: block; font-size: 14px; color: #3a383f; posi=
tion: relative; font-family: "GitLab Mono", "JetBrains Mono", "Menlo", "D=
ejaVu Sans Mono", "Liberation Mono", "Consolas", "Ubuntu Mono", "Courier =
New", "andale mono", "lucida console", monospace; font-variant-ligatures:=
 none; word-break: break-all; word-wrap: break-word; background-color: in=
herit; border-radius: 2px; margin: 0; padding: 0; border: inherit solid #=
dcdcde;'>-<span class=3D"line" data-lang=3D"smarty"><span class=3D"k" sty=
le=3D"font-weight: 600;">{/</span><span class=3D"nb" style=3D"color: #008=
6b3;">if</span><span class=3D"k" style=3D"font-weight: 600;">}</span></sp=
an>
</pre></td>
</tr>
<tr class=3D"line_holder new" style=3D"line-height: 1.6;">
<td class=3D"old_line diff-line-num new" data-linenumber=3D"218" style=3D=
"width: 35px; color: rgba(5,5,6,.24); border-right-width: 1px; border-rig=
ht-color: #c7f0d2; border-right-style: solid; padding: inherit;" align=3D=
"right" bgcolor=3D"#ddfbe6">
 =

</td>
<td class=3D"new_line diff-line-num new" data-linenumber=3D"218" style=3D=
"width: 35px; color: rgba(5,5,6,.24); border-right-width: 1px; border-rig=
ht-color: #c7f0d2; border-right-style: solid; padding: inherit;" align=3D=
"right" bgcolor=3D"#ddfbe6">
218
</td>
<td class=3D"line_content new" style=3D"padding: inherit;" bgcolor=3D"#ec=
fdf0"><pre style=3D'display: block; font-size: 14px; color: #3a383f; posi=
tion: relative; font-family: "GitLab Mono", "JetBrains Mono", "Menlo", "D=
ejaVu Sans Mono", "Liberation Mono", "Consolas", "Ubuntu Mono", "Courier =
New", "andale mono", "lucida console", monospace; font-variant-ligatures:=
 none; word-break: break-all; word-wrap: break-word; background-color: in=
herit; border-radius: 2px; margin: 0; padding: 0; border: inherit solid #=
dcdcde;'>+<span class=3D"line" data-lang=3D"smarty"><span class=3D"idiff =
left right addition" style=3D"background-color: #c7f0d2;">    </span><spa=
n class=3D"k" style=3D"font-weight: 600;">{/</span><span class=3D"nb" sty=
le=3D"color: #0086b3;">if</span><span class=3D"k" style=3D"font-weight: 6=
00;">}</span></span>
</pre></td>
</tr>
<tr class=3D"line_holder" style=3D"line-height: 1.6;">
<td class=3D"old_line diff-line-num" data-linenumber=3D"218" style=3D"wid=
th: 35px; color: rgba(5,5,6,.24); border-right-width: 1px; border-right-c=
olor: #ececef; border-right-style: solid; padding: inherit;" align=3D"rig=
ht" bgcolor=3D"#fbfafd">
218
</td>
<td class=3D"new_line diff-line-num" data-linenumber=3D"219" style=3D"wid=
th: 35px; color: rgba(5,5,6,.24); border-right-width: 1px; border-right-c=
olor: #ececef; border-right-style: solid; padding: inherit;" align=3D"rig=
ht" bgcolor=3D"#fbfafd">
219
</td>
<td class=3D"line_content" style=3D"padding: inherit;"><pre style=3D'disp=
lay: block; font-size: 14px; color: #3a383f; position: relative; font-fam=
ily: "GitLab Mono", "JetBrains Mono", "Menlo", "DejaVu Sans Mono", "Liber=
ation Mono", "Consolas", "Ubuntu Mono", "Courier New", "andale mono", "lu=
cida console", monospace; font-variant-ligatures: none; word-break: break=
-all; word-wrap: break-word; background-color: inherit; border-radius: 2p=
x; margin: 0; padding: 0; border: inherit solid #dcdcde;'> <span class=3D=
"line" data-lang=3D"smarty"></span>
</pre></td>
</tr>
<tr class=3D"line_holder" style=3D"line-height: 1.6;">
<td class=3D"old_line diff-line-num" data-linenumber=3D"219" style=3D"wid=
th: 35px; color: rgba(5,5,6,.24); border-right-width: 1px; border-right-c=
olor: #ececef; border-right-style: solid; padding: inherit;" align=3D"rig=
ht" bgcolor=3D"#fbfafd">
219
</td>
<td class=3D"new_line diff-line-num" data-linenumber=3D"220" style=3D"wid=
th: 35px; color: rgba(5,5,6,.24); border-right-width: 1px; border-right-c=
olor: #ececef; border-right-style: solid; padding: inherit;" align=3D"rig=
ht" bgcolor=3D"#fbfafd">
220
</td>
<td class=3D"line_content" style=3D"padding: inherit;"><pre style=3D'disp=
lay: block; font-size: 14px; color: #3a383f; position: relative; font-fam=
ily: "GitLab Mono", "JetBrains Mono", "Menlo", "DejaVu Sans Mono", "Liber=
ation Mono", "Consolas", "Ubuntu Mono", "Courier New", "andale mono", "lu=
cida console", monospace; font-variant-ligatures: none; word-break: break=
-all; word-wrap: break-word; background-color: inherit; border-radius: 2p=
x; margin: 0; padding: 0; border: inherit solid #dcdcde;'> <span class=3D=
"line" data-lang=3D"smarty">    <span class=3D"k" style=3D"font-weight: 6=
00;">{</span><span class=3D"nb" style=3D"color: #0086b3;">if</span> <span=
 class=3D"nv" style=3D"color: #008080;">$prefs.feature_layoutshadows</spa=
n> <span class=3D"na" style=3D"color: #008080;">eq</span> <span class=3D"=
s1" style=3D"color: #dd1144;">'y'</span><span class=3D"k" style=3D"font-w=
eight: 600;">}{</span><span class=3D"nb" style=3D"color: #0086b3;">eval</=
span> <span class=3D"na" style=3D"color: #008080;">var</span><span class=3D=
"o" style=3D"font-weight: 600;">=3D</span><span class=3D"nv" style=3D"col=
or: #008080;">$prefs.main_shadow_end</span><span class=3D"k" style=3D"fon=
t-weight: 600;">}</span><span class=3D"nt" style=3D"color: #000080;">&lt;=
/div&gt;</span><span class=3D"k" style=3D"font-weight: 600;">{/</span><sp=
an class=3D"nb" style=3D"color: #0086b3;">if</span><span class=3D"k" styl=
e=3D"font-weight: 600;">}</span></span>
</pre></td>
</tr>
<tr class=3D"line_holder" style=3D"line-height: 1.6;">
<td class=3D"old_line diff-line-num" data-linenumber=3D"220" style=3D"wid=
th: 35px; color: rgba(5,5,6,.24); border-right-width: 1px; border-right-c=
olor: #ececef; border-right-style: solid; padding: inherit;" align=3D"rig=
ht" bgcolor=3D"#fbfafd">
220
</td>
<td class=3D"new_line diff-line-num" data-linenumber=3D"221" style=3D"wid=
th: 35px; color: rgba(5,5,6,.24); border-right-width: 1px; border-right-c=
olor: #ececef; border-right-style: solid; padding: inherit;" align=3D"rig=
ht" bgcolor=3D"#fbfafd">
221
</td>
<td class=3D"line_content" style=3D"padding: inherit;"><pre style=3D'disp=
lay: block; font-size: 14px; color: #3a383f; position: relative; font-fam=
ily: "GitLab Mono", "JetBrains Mono", "Menlo", "DejaVu Sans Mono", "Liber=
ation Mono", "Consolas", "Ubuntu Mono", "Courier New", "andale mono", "lu=
cida console", monospace; font-variant-ligatures: none; word-break: break=
-all; word-wrap: break-word; background-color: inherit; border-radius: 2p=
x; margin: 0; padding: 0; border: inherit solid #dcdcde;'> <span class=3D=
"line" data-lang=3D"smarty"></span>
</pre></td>
</tr>

</table>
<br>
</li>

</div>
<div class=3D"footer" style=3D"margin-top: 10px;">
<p style=3D"font-size: small; color: #626168;">
=E2=80=94
<br>
<a href=3D"https://gitlab.com/tikiwiki/tiki/-/commit/7f7071e5c41924ef5374=
93b94c7c926ae9493da7">View it on GitLab</a>.
<br>
You're receiving this email because of your account on <a target=3D"_blan=
k" rel=3D"noopener noreferrer" href=3D"https://gitlab.com">gitlab.com</a>=
. <a href=3D"https://gitlab.com/-/profile/notifications" target=3D"_blank=
" rel=3D"noopener noreferrer" class=3D"mng-notif-link">Manage all notific=
ations</a> =C2=B7 <a href=3D"https://gitlab.com/help" target=3D"_blank" r=
el=3D"noopener noreferrer" class=3D"help-link">Help</a>
<span style=3D"color: transparent; font-size: 0; display: none; overflow:=
 hidden; opacity: 0; width: 0; height: 0; max-width: 0; max-height: 0;">
Notification message regarding https://gitlab.com/tikiwiki/tiki/-/commit/=
7f7071e5c41924ef537493b94c7c926ae9493da7 at 1785538548
</span>
<script type=3D"application/ld+json">{"@context":"http://schema.org","@ty=
pe":"EmailMessage","action":{"@type":"ViewAction","name":"View Commit","u=
rl":"https://gitlab.com/tikiwiki/tiki/-/commit/7f7071e5c41924ef537493b94c=
7c926ae9493da7"}}</script>


</p>
</div>
</body>
</html>

----==_mimepart_6a6d27f4a4cc5_39178c6d8146d--


--===============5337137866392758256==
Content-Type: text/plain; charset="us-ascii"
MIME-Version: 1.0
Content-Transfer-Encoding: 7bit
Content-Disposition: inline


--===============5337137866392758256==
Content-Type: text/plain; charset="us-ascii"
MIME-Version: 1.0
Content-Transfer-Encoding: 7bit
Content-Disposition: inline

_______________________________________________
TikiWiki-cvs mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/tikiwiki-cvs

--===============5337137866392758256==--