git-svn-id: http://www.winterrodeln.org/svn/servermediawiki/trunk/extensions/wrmap@769
7aebc617-e5e2-0310-91dc-
80fb5f6d2477
// Query database
$dbr = wfGetDB(DB_SLAVE);
- $res = $dbr->select('wrsleddingcache', array('page_title', 'position_latitude', 'position_longitude'), array('show_in_overview', 'not under_construction'));
+ $res = $dbr->select('wrsledruncache', array('page_title', 'position_latitude', 'position_longitude'), array('show_in_overview', 'not under_construction'));
$sleddingRoutes = array();
while ($sleddingRoute = $dbr->fetchRow($res)) $sleddingRoutes[] = $sleddingRoute;
$dbr->freeResult($res);
$wgExtensionCredits['parserhook'][] = array(
'name' => 'Winterrodeln Map',
- 'version' => '1.2.0',
+ 'version' => '1.4.0',
'author' =>'Philipp Spitzer',
'url' => 'http://www.winterrodeln.org/trac/wiki/WrMap',
- 'description' => 'This extension creates a map with GoogleMaps to show sledding routes.'
+ 'description' => 'This extension creates a map with GoogleMaps to show sledrun routes.'
);