I implemented that, and it didn't work. I think because there's something that needs to be done to addevent.php as well? When I tried to add an event, I wasn't using doaddevent, I was just using addevent, which only gives me 2004-2014. That's where I need to go into the past.
Edit: I looked at it myself, and figured it out. I edited addevent.php. Found this:
<br />$selectyear = "<select name=\"year\" class=\"formboxes\">"; <br />for ($i=$thisyear;$i<=($thisyear+10);$i++) { <br /> $selected = ""; <br /> if ($i== $thisyear) { <br /> $selected = "selected=\"selected\""; <br /> } <br /> $selectyear .= "<option $selected>$i</option>"; <br />} <br />
Changed this line:
for ($i=$thisyear;$i<=($thisyear+10);$i++) {
To this:
for ($i=($thisyear-20);$i<=($thisyear+10);$i++) {
I picked minus 20 as that should about cover how far back I want to go.
I had to make the same code update in editevent.php as well to allow for the selection of a year into the past.