renlok submitted a new resource: Custom End Time Mod - Add option for users to add a custom end time to their auctions Read more about this resource...
renlok updated Custom End Time Mod with a new update entry: Bug fixes Read the rest of this update entry...
Thanks Tricer. I ported this mod to 1.1.2P2 base code with Meld. It works. The auction listing preview window doesn't show the End Time, just the day. Why wasn't this included in the mod? It stands to reason if a seller wanted a specific end time that it should appear on the preview page for the seller to approve. How can this improvement be made?
1.1.1 and 1.1.2 is specified in this mod There are three versions of 1.1.2 base code 1.1.2 - 1.1.2P1 - 1.1.2P2 The mod writeup did not specify which 1.1.2 version the mod is known to be compatible with. I have compared some of the versions of the WeBid base code with WinMerge and Meld. There are differences, just need to know what they are and evaluate the impact to other mods that may be in place.
When an auction is created and a custom end time is entered, the custom end time is save correctly to MySQL. When an auction is edited by the seller, the custom end time is set equal to the start time. Has anyone else experienced this bug? Any ideas why this would be happening?
This bug affects only the editing of auction originally created with custom end time button checked. If the auction was not created with custom end time the ends=starts bug will not occur.
Oh yeah I get it to change Code: <!-- IF B_EDITING --> {END_TIME} <input type="hidden" name="a_ends" value="{END_TIME}"> <!-- ELSE --> {L_022}: {DURATIONS}<br> <!-- IF B_EDIT_ENDTIME --> {L_or_custom_end_time}: <input type="text" name="a_ends" id="a_ends" value="{END_TIME}" size="20" maxlength="19"> <script type="text/javascript"> new tcal ({'id': 'a_ends','controlname': 'a_ends', 'formname': 'sell'}); $('#a_ends').change(function () { $('#custom_end').attr('checked', true); }); </script> <!-- ENDIF --> <!-- ENDIF --> to Code: {L_022}: {DURATIONS}<br> <!-- IF B_EDIT_ENDTIME --> {L_or_custom_end_time}: <input type="text" name="a_ends" id="a_ends" value="{END_TIME}" size="20" maxlength="19"> <script type="text/javascript"> new tcal ({'id': 'a_ends','controlname': 'a_ends', 'formname': 'sell'}); $('#a_ends').change(function () { $('#custom_end').attr('checked', true); }); </script> <!-- ENDIF -->
Hey guys! Would any of you would like to try and update this mod to work with the most current version? This would be awesome if we can make this work with version 1.2.2.2 Been needing to get my auction site up and running, but without the possibility of adding a custom end time I might have to look at using something else...