diff options
author | Lukas Fleischer <archlinux@cryptocrack.de> | 2012-07-13 23:05:15 +0200 |
---|---|---|
committer | Lukas Fleischer <archlinux@cryptocrack.de> | 2012-07-15 22:42:45 +0200 |
commit | a03c684ecd51327f9c6921a6e0001d82e3223799 (patch) | |
tree | 8dd8dbd272fb5c29e76c532795d8cff3b246e73a /web/template/pkg_comments.php | |
parent | eb22bcc7548d1b1025a3832aa4555792729d11b0 (diff) | |
download | aur-a03c684ecd51327f9c6921a6e0001d82e3223799.tar.gz aur-a03c684ecd51327f9c6921a6e0001d82e3223799.tar.xz |
Use absolute URIs for style sheets and images
This is needed for our new URI scheme, since we will use virtual
directories, such as "/packages/" instead of "/packages.php" etc.
Having relative URIs results in incorrect paths, such as
"/packages/css/aur.css" (instead of "/css/aur.css").
Signed-off-by: Lukas Fleischer <archlinux@cryptocrack.de>
Diffstat (limited to 'web/template/pkg_comments.php')
-rw-r--r-- | web/template/pkg_comments.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/web/template/pkg_comments.php b/web/template/pkg_comments.php index 02f49633..b2d9ca58 100644 --- a/web/template/pkg_comments.php +++ b/web/template/pkg_comments.php @@ -19,7 +19,7 @@ $count = package_comments_count($_GET['ID']); <input type="hidden" name="action" value="do_DeleteComment" /> <input type="hidden" name="comment_id" value="<?php echo $row['ID'] ?>" /> <input type="hidden" name="token" value="<?php echo htmlspecialchars($_COOKIE['AURSID']) ?>" /> - <input type="image" src="images/x.png" alt="<?php echo __('Delete comment') ?> name="submit" value="1" /> + <input type="image" src="/images/x.png" alt="<?php echo __('Delete comment') ?> name="submit" value="1" /> </fieldset> </form> <?php endif; ?> |