Index: trunk/extensions/SemanticMediaWiki/includes/SMW_DV_GeoCoords.php |
— | — | @@ -154,7 +154,7 @@ |
155 | 155 | $this->m_latparts = false; |
156 | 156 | $this->m_longparts = false; |
157 | 157 | |
158 | | - list($this->m_lat, $this->m_long) = split(',', $args[0]); |
| 158 | + list($this->m_lat, $this->m_long) = explode(',', $args[0]); |
159 | 159 | $this->m_caption = $this->formatAngleValues(true) . ', ' . $this->formatAngleValues(false); // this is our output text |
160 | 160 | $this->m_wikivalue = $this->m_caption; |
161 | 161 | } |