summaryrefslogtreecommitdiffstats
path: root/web/html/pkgedit.php
diff options
context:
space:
mode:
authortardo <tardo@nagi-fanboi.net>2007-09-29 22:45:30 -0400
committerPaul Mattal <paul@mattal.com>2007-10-02 07:29:27 -0400
commit881b921eb30f5a28226e8b25ef194c4254cb09d5 (patch)
tree857cc8d87800d42b82b72c99afbc9d8d53067c8e /web/html/pkgedit.php
parent6e49512b4e4a05398ede8e2280edec0a516c253f (diff)
downloadaurweb-881b921eb30f5a28226e8b25ef194c4254cb09d5.tar.xz
Fixed version strings.
Added AUR_VERSION to config file, so now we should only need to change one location. KISS ftw. Signed-off-by: tardo <tardo@nagi-fanboi.net>
Diffstat (limited to 'web/html/pkgedit.php')
-rw-r--r--web/html/pkgedit.php12
1 files changed, 6 insertions, 6 deletions
diff --git a/web/html/pkgedit.php b/web/html/pkgedit.php
index e617b75..c1169f4 100644
--- a/web/html/pkgedit.php
+++ b/web/html/pkgedit.php
@@ -27,7 +27,7 @@ if (isset($_COOKIE["AURSID"])) {
if (!$atype) {
print __("You must be logged in before you can edit package information.");
print "<br />\n";
- html_footer($svn_idstr);
+ html_footer(AUR_VERSION);
exit();
}
@@ -36,7 +36,7 @@ if (!$atype) {
if (!$_REQUEST["ID"]) {
print __("Missing package ID.");
print "<br />\n";
- html_footer($svn_idstr);
+ html_footer(AUR_VERSION);
}
@@ -59,7 +59,7 @@ if ($_REQUEST["del_Comment"]) {
print __("Missing comment ID.")."<br />\n";
}
pkgdetails_link($_REQUEST["ID"]);
- html_footer($svn_idstr);
+ html_footer(AUR_VERSION);
exit();
}
@@ -120,7 +120,7 @@ if ($_REQUEST["add_Comment"]) {
print "<input type='reset' value=\"".__("Reset")."\">\n";
print "</form>\n";
}
- html_footer($svn_idstr);
+ html_footer(AUR_VERSION);
exit();
}
@@ -171,13 +171,13 @@ if ($_REQUEST["change_Category"]) {
print "</form>\n";
}
- html_footer($svn_idstr);
+ html_footer(AUR_VERSION);
exit();
}
print __("You've found a bug if you see this....")."<br />\n";
-html_footer($svn_idstr); # Use the $Id$ keyword
+html_footer(AUR_VERSION); # Use the $Id$ keyword
# NOTE: when checking in a new file, use
# 'svn propset svn:keywords "Id" filename.php'
# to tell svn to expand the "Id" keyword.