summaryrefslogtreecommitdiff
path: root/Cydia.app
diff options
context:
space:
mode:
authorJay Freeman (saurik) <saurik@saurik.com>2009-06-22 13:35:28 +0000
committerJay Freeman (saurik) <saurik@saurik.com>2010-09-30 07:13:57 +0000
commit744f398ec3592d2e5bd60538aa618f92d315dcc3 (patch)
tree90fd7e948eb4d86380d52194b44b1be2ec16eded /Cydia.app
parent8c1bfa15252a894ab1aeab031e5179d03cbf9829 (diff)
Fixed queuing and the iphone-gcc crash.
Diffstat (limited to 'Cydia.app')
-rw-r--r--Cydia.app/confirm.js5
1 files changed, 4 insertions, 1 deletions
diff --git a/Cydia.app/confirm.js b/Cydia.app/confirm.js
index bd78c2e..ba2e2e5 100644
--- a/Cydia.app/confirm.js
+++ b/Cydia.app/confirm.js
@@ -43,9 +43,12 @@ $(function () {
var type = entry[0];
if (type == "PreDepends")
type = "Depends";
+ var version = entry[1];
+ if (entry.length >= 4)
+ version += " " + entry[3];
$("#i" + i).append("<div class=\"clearfix\"><div>" +
"<label>" + $.xml(type) + "</label>" +
- "<label>" + $.xml(entry[1] + " " + entry[3]) + "</label>" +
+ "<label>" + $.xml(version) + "</label>" +
"</div></div>");
}
}