diff options
| author | Bananeweizen <bananeweizen@gmx.de> | 2013-05-31 13:44:45 +0200 |
|---|---|---|
| committer | Bananeweizen <bananeweizen@gmx.de> | 2013-05-31 13:44:45 +0200 |
| commit | 1696b0ceb1f75bf0020081a65ae042c121671db7 (patch) | |
| tree | 228186de569611f0ee2d385be8bee4d958036ce4 /main | |
| parent | 140c1fd3573811596900e9ae7bae713ba8803f93 (diff) | |
| download | cgeo-1696b0ceb1f75bf0020081a65ae042c121671db7.zip cgeo-1696b0ceb1f75bf0020081a65ae042c121671db7.tar.gz cgeo-1696b0ceb1f75bf0020081a65ae042c121671db7.tar.bz2 | |
fix #2810 log page changes
Diffstat (limited to 'main')
| -rw-r--r-- | main/src/cgeo/geocaching/connector/gc/GCParser.java | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/main/src/cgeo/geocaching/connector/gc/GCParser.java b/main/src/cgeo/geocaching/connector/gc/GCParser.java index 03698bb..d4e1999 100644 --- a/main/src/cgeo/geocaching/connector/gc/GCParser.java +++ b/main/src/cgeo/geocaching/connector/gc/GCParser.java @@ -972,12 +972,13 @@ public abstract class GCParser { "__EVENTARGUMENT", "", "__LASTFOCUS", "", "ctl00$ContentBody$LogBookPanel1$ddLogType", Integer.toString(logType.id), - "ctl00$ContentBody$LogBookPanel1$DateTimeLogged", String.format("%02d", month) + "/" + String.format("%02d", day) + "/" + String.format("%04d", year), - "ctl00$ContentBody$LogBookPanel1$DateTimeLogged$Month", Integer.toString(month), - "ctl00$ContentBody$LogBookPanel1$DateTimeLogged$Day", Integer.toString(day), - "ctl00$ContentBody$LogBookPanel1$DateTimeLogged$Year", Integer.toString(year), + "ctl00$ContentBody$LogBookPanel1$uxDateVisited", String.format("%02d", month) + "/" + String.format("%02d", day) + "/" + String.format("%04d", year), + "ctl00$ContentBody$LogBookPanel1$uxDateVisited$Month", Integer.toString(month), + "ctl00$ContentBody$LogBookPanel1$uxDateVisited$Day", Integer.toString(day), + "ctl00$ContentBody$LogBookPanel1$uxDateVisited$Year", Integer.toString(year), "ctl00$ContentBody$LogBookPanel1$uxLogInfo", logInfo, - "ctl00$ContentBody$LogBookPanel1$LogButton", "Submit Log Entry", + "ctl00$ContentBody$LogBookPanel1$btnSubmitLog", "Submit Log Entry", + "ctl00$ContentBody$LogBookPanel1$uxLogCreationSource", "Old", "ctl00$ContentBody$uxVistOtherListingGC", ""); Login.putViewstates(params, viewstates); if (trackables != null && !trackables.isEmpty()) { // we have some trackables to proceed |
