diff options
author | Byron Jones <bjones@mozilla.com> | 2013-03-15 05:26:35 +0100 |
---|---|---|
committer | Byron Jones <bjones@mozilla.com> | 2013-03-15 05:26:35 +0100 |
commit | 1899e52589aedb2a234c0c8bc4bdf1700e893d58 (patch) | |
tree | 924b2455462e16fc67c74c0e6bc47bbc8ebf4e7b | |
parent | c24b099b47056ef264a48197f304ac589171e805 (diff) | |
download | bugzilla-1899e52589aedb2a234c0c8bc4bdf1700e893d58.tar.gz bugzilla-1899e52589aedb2a234c0c8bc4bdf1700e893d58.tar.xz |
fix broken images on error pages
-rw-r--r-- | errors/401.html | 2 | ||||
-rw-r--r-- | errors/403.html | 2 | ||||
-rw-r--r-- | errors/404.html | 2 | ||||
-rw-r--r-- | errors/500.html | 2 |
4 files changed, 4 insertions, 4 deletions
diff --git a/errors/401.html b/errors/401.html index c72ac399a..55c04398d 100644 --- a/errors/401.html +++ b/errors/401.html @@ -26,7 +26,7 @@ </style> </head> <body> - <img src="images/buggie.png" id="buggie" alt="buggie" width="78" height="215"> + <img src="/images/buggie.png" id="buggie" alt="buggie" width="78" height="215"> <div id="content"> <h1>Authentication Required</h1> <p>This server could not verify that you are authorized to access diff --git a/errors/403.html b/errors/403.html index a5cc85a31..35325cfea 100644 --- a/errors/403.html +++ b/errors/403.html @@ -26,7 +26,7 @@ </style> </head> <body> - <img src="images/buggie.png" id="buggie" alt="buggie" width="78" height="215"> + <img src="/images/buggie.png" id="buggie" alt="buggie" width="78" height="215"> <div id="content"> <h1>Access Denied</h1> <p>Access to the requested resource has been denied.</p> diff --git a/errors/404.html b/errors/404.html index 0c1ebafb8..56c72d0e2 100644 --- a/errors/404.html +++ b/errors/404.html @@ -26,7 +26,7 @@ </style> </head> <body> - <img src="images/buggie.png" id="buggie" alt="buggie" width="78" height="215"> + <img src="/images/buggie.png" id="buggie" alt="buggie" width="78" height="215"> <div id="content"> <h1>Object Not Found</h1> <p>The requested URL was not found on this server.</p> diff --git a/errors/500.html b/errors/500.html index 672dba36d..2d24fe2d5 100644 --- a/errors/500.html +++ b/errors/500.html @@ -26,7 +26,7 @@ </style> </head> <body> - <img src="images/buggie.png" id="buggie" alt="buggie" width="78" height="215"> + <img src="/images/buggie.png" id="buggie" alt="buggie" width="78" height="215"> <div id="content"> <h1>Internal Server Error</h1> <p>The server encountered an internal errors and was unable to complete your request.</p> |