diff options
author | Jay Freeman (saurik) <saurik@saurik.com> | 2008-12-28 05:00:26 +0000 |
---|---|---|
committer | Jay Freeman (saurik) <saurik@saurik.com> | 2010-09-30 07:09:22 +0000 |
commit | aa5d0de7a71977eaf42728cfe4ab8ae31d1133a9 (patch) | |
tree | 5bc7f53cc3ee436e178ff0490d13ab0729e05e52 /Cydia.app/confirm.js | |
parent | 7594e0d2038278ab851fbb19521586a4a6fe6b97 (diff) |
Doing another beta release.
Diffstat (limited to 'Cydia.app/confirm.js')
-rw-r--r-- | Cydia.app/confirm.js | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/Cydia.app/confirm.js b/Cydia.app/confirm.js index 75fe70b..41f7a0d 100644 --- a/Cydia.app/confirm.js +++ b/Cydia.app/confirm.js @@ -34,7 +34,7 @@ $(function () { var issue = issues[i]; $("#issues").append( - "<label style=\"color: #704d4d\">" + issue[0] + "</label>" + + "<label style=\"color: #704d4d\">" + $.xml(issue[0]) + "</label>" + "<fieldset style=\"background-color: #dddddd\" class=\"clearfix\" id=\"i" + i + "\"></fieldset>" ); @@ -44,8 +44,8 @@ $(function () { if (type == "PreDepends") type = "Depends"; $("#i" + i).append("<div><div>" + - "<label>" + type + "</label>" + - "<div>" + entry[1] + " " + entry[3] + "</div>" + + "<label>" + $.xml(type) + "</label>" + + "<labe>" + $.xml(entry[1] + " " + entry[3]) + "</label>" + "</div></div>"); } } @@ -64,8 +64,8 @@ $(function () { if (length != 0) { $("#modifications").append("<div class=\"clearfix\"><div>" + - "<label>" + keys[i] + "</label>" + - "<div id=\"c" + i + "\"></div>" + + "<label>" + $.xml(keys[i]) + "</label>" + + "<label id=\"c" + i + "\"></label>" + "</div></div>"); var value = ""; |