projects
/
kivitendo-erp.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Pflichtenheft: Zugriff auf nicht vorhandenes »visible_item« verhindern
[kivitendo-erp.git]
/
SL
/
Layout
/
AdminLogin.pm
1
package SL::Layout::AdminLogin;
2
3
use strict;
4
use parent qw(SL::Layout::None);
5
6
sub start_content {
7
"<div id='admin' class='admin'>\n";
8
}
9
10
sub end_content {
11
"</div>\n";
12
}
13
14
1;