Ignore:
Timestamp:
Apr 12, 2013, 10:27:33 PM (11 years ago)
Author:
rvelices
Message:

rv_gmaps: more forgiving about some wrong exif gps formatting + small technical stuff

File:
1 edited

Legend:

Unmodified
Added
Removed
  • extensions/rv_gmaps/trunk/include/functions_map.php

    r20461 r22180  
    3838function rvm_parse_map_data_url($tokens, &$next_token)
    3939{
    40   $page=array();
    41 
    42   $page = array_merge($page, parse_section_url($tokens, $next_token) );
     40  $page = parse_section_url($tokens, $next_token);
    4341  if ( !isset($page['section']) )
    4442    $page['section'] = 'categories';
     
    5250function rvm_parse_kml_url($tokens, &$next_token)
    5351{
    54   $page=array();
    55 
    56   $page = array_merge($page, parse_section_url($tokens, $next_token) );
     52  $page = parse_section_url($tokens, $next_token);
    5753  if ( !isset($page['section']) )
    5854    $page['section'] = 'categories';
     
    10096function rvm_parse_blowup_url($tokens, &$next_token)
    10197{
    102   $page=array();
    103   $page = array_merge($page, parse_section_url($tokens, $next_token) );
     98  $page = parse_section_url($tokens, $next_token);
    10499  if ( !isset($page['section']) )
    105100    $page['section'] = 'categories';
Note: See TracChangeset for help on using the changeset viewer.