Ticket #370 (new defect)

Opened 2 years ago

Last modified 1 year ago

Drop Down in Firefox Does Not Populate Fields

Reported by: yearginsm Assigned to: ringmaster
Priority: high Component: geo
Severity: normal Keywords: drop down, javascript, firefox, ie
Cc:

Description

Drop down menu will not populate coordinates in Firefox 1.5.0.1 during an entry post/edit. Data entry/storage still works. Mostly a nuisance.

  • Using Windows version of Firefox
  • Does not generate a traceable JavaScript error
  • Works as designed in Internet Explorer 6.

Change History

02/25/07 03:41:02 changed by otto42

  • priority changed from low to high.

Line 311 has this code in it:

if(strstr($_SERVER['REQUEST_URI'], 'post.php'))

This is no longer valid in the latest Wordpress versions. Changing it to this:

if(strstr($_SERVER['REQUEST_URI'], 'post'))

Makes the dropdown work again, and should prevent future changes from breaking it as well.