summaryrefslogtreecommitdiff
path: root/LedgerSMB
diff options
context:
space:
mode:
authorchristopherm <christopherm@4979c152-3d1c-0410-bac9-87ea11338e46>2006-09-01 12:43:13 +0000
committerchristopherm <christopherm@4979c152-3d1c-0410-bac9-87ea11338e46>2006-09-01 12:43:13 +0000
commit245b7d5d78f883e2bec6bca0d44a7becede168e3 (patch)
tree5f2708b014efb223054ea01c8ab7c9b6c991be8b /LedgerSMB
parentcf9b4d5269156ceb488f4eb6995609959d7213a7 (diff)
no need for logic to display favicon, plus it wasn't reliable anyway
git-svn-id: https://ledger-smb.svn.sourceforge.net/svnroot/ledger-smb/trunk@4 4979c152-3d1c-0410-bac9-87ea11338e46
Diffstat (limited to 'LedgerSMB')
-rwxr-xr-xLedgerSMB/Form.pm7
1 files changed, 1 insertions, 6 deletions
diff --git a/LedgerSMB/Form.pm b/LedgerSMB/Form.pm
index 0fb59a1a..361a76dd 100755
--- a/LedgerSMB/Form.pm
+++ b/LedgerSMB/Form.pm
@@ -238,11 +238,6 @@ sub header {
$stylesheet = qq|<link rel="stylesheet" href="css/$self->{stylesheet}" type="text/css" title="LedgerSMB stylesheet" />\n|;
}
- if ($self->{favicon} && (-f "$self->{favicon}")) {
- $favicon = qq|<link rel="icon" href="$self->{favicon}" type="image/x-icon" />
- <link rel="shortcut icon" href="$self->{favicon}" type="image/x-icon" />\n|;
- }
-
if ($self->{charset}) {
$charset = qq|<meta http-equiv="content-type" content="text/html; charset=$self->{charset}" />\n|;
}
@@ -259,7 +254,7 @@ sub header {
<title>$self->{titlebar}</title>
<meta http-equiv="Pragma" content="no-cache" />
<meta http-equiv="Expires" content="-1" />
- $favicon
+ <link rel="shortcut icon" href="favicon.ico" type="image/x-icon" />
$stylesheet
$charset
<meta name="robots" content="noindex,nofollow" />