default to a session cookie instead of setting an explicit timeout, weird timezone...
[freeside.git] / httemplate / elements / dashboard-topnotes.html
1 % if ( $notes ) {
2   <TABLE CLASS="fsinnerbox">
3     <TR><TD>
4       <% $notes %>
5     </TD></TR>
6   </TABLE>
7   <BR>
8 % }
9 <%init>
10
11 my $conf = new FS::Conf;
12
13 my $notes = join('<BR>', map encode_entities($_), $conf->config('dashboard-topnotes') );
14
15 </%init>