Skip to content

Commit

Permalink
Merge pull request #43 from Indicia-Team/hotfix-mtbqqq
Browse files Browse the repository at this point in the history
Hotfix mtbqqq
  • Loading branch information
johnvanbreda committed Nov 23, 2015
2 parents 127e807 + 534baed commit 3ad4444
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 7 deletions.
4 changes: 2 additions & 2 deletions application/config/version.php
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,8 @@
/**
* @var string The application files version number.
*/
$config['version'] = '0.9.1.11';
$config['release_date'] = '2015-11-10';
$config['version'] = '0.9.1.12';
$config['release_date'] = '2015-11-23';
$config['repository'] = 'https://github.com/Indicia-Team/warehouse/releases';

?>
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
CREATE OR REPLACE FUNCTION sref_system_to_srid(IN sref_system CHARACTER VARYING)
RETURNS INTEGER AS
$BODY$
CREATE OR REPLACE FUNCTION sref_system_to_srid(sref_system character varying)
RETURNS integer AS
$BODY$
BEGIN
RETURN CASE lower(sref_system)
WHEN 'osgb' THEN 27700
WHEN 'osie' THEN 29901
WHEN 'lugr' THEN 2169
WHEN 'mtb' THEN 4745
WHEN 'mtbqqq' THEN 4745
WHEN 'guernsey' THEN 3108
WHEN 'jersey' THEN 3109
WHEN 'utm30ed50' THEN 23030
Expand All @@ -15,4 +15,5 @@ CREATE OR REPLACE FUNCTION sref_system_to_srid(IN sref_system CHARACTER VARYING)
END;
END;
$BODY$
LANGUAGE plpgsql VOLATILE;
LANGUAGE plpgsql VOLATILE
COST 100;

0 comments on commit 3ad4444

Please sign in to comment.