Skip to content

Commit 7129097

Browse files
committed
2.7.3b
1 parent f3d87a2 commit 7129097

File tree

4 files changed

+24
-4
lines changed

4 files changed

+24
-4
lines changed

CHANGELOG.md

+15
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,18 @@
1+
Ushahidi 2.7.3b (Bug fix release) - 14/04/2014
2+
-------------------------------------
3+
4+
### Major Fixes
5+
6+
* Timeline upgrade (https://github.com/ushahidi/Ushahidi_Web/pull/1341)
7+
* Fixed issue with dual alert sign up (https://github.com/ushahidi/Ushahidi_Web/pull/1339)
8+
* Updated sms helper and scheduler to add url in sms (https://github.com/ushahidi/Ushahidi_Web/pull/1339)
9+
* Check category translation on csv import to avoid category duplication (https://github.com/ushahidi/Ushahidi_Web/pull/1345)
10+
* Fixed issue with the reverse geocoder (https://github.com/ushahidi/Ushahidi_Web/pull/1336)
11+
* Fixed broken video embeds in reports when viewed over HTTPS (https://github.com/ushahidi/Ushahidi_Web/pull/1328)
12+
* Added South Sudan and Kosovo to the country list (https://github.com/ushahidi/Ushahidi_Web/pull/1324)
13+
* Fixed issue with feed category
14+
* Replaced feedback email after submit report with site email
15+
116
Ushahidi 2.7.2 (Bug fix release) - 28/01/2014
217
-------------------------------------
318

application/config/version.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,10 @@
33
* The Ushahidi Engine version
44
* Make sure to update the ushahidi_version in the settings table too!
55
*/
6-
$config['ushahidi_version'] = "2.7.2";
6+
$config['ushahidi_version'] = "2.7.3b";
77

88
/**
99
* The Ushahidi Engine DB revision number
1010
* Increments when changes are made to the Ushahidi DB schema.
1111
*/
12-
$config['ushahidi_db_version'] = "116";
12+
$config['ushahidi_db_version'] = "117";

sql/upgrade116-117.sql

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
-- UPDATE db_version
2+
UPDATE `settings` SET `value` = 117 WHERE `key` = 'db_version';
3+
4+
-- UPDATE ushahidi_version
5+
UPDATE `settings` SET `value` = '2.7.3b' WHERE `key` = 'ushahidi_version';

sql/ushahidi.sql

+2-2
Original file line numberDiff line numberDiff line change
@@ -1460,5 +1460,5 @@ CREATE TABLE IF NOT EXISTS `verified` (
14601460
* Version information for table `settings`
14611461
*
14621462
*/
1463-
UPDATE `settings` SET `value` = '116' WHERE `key` = 'db_version';
1464-
UPDATE `settings` SET `value` = '2.7.2' WHERE `key`= 'ushahidi_version';
1463+
UPDATE `settings` SET `value` = '117' WHERE `key` = 'db_version';
1464+
UPDATE `settings` SET `value` = '2.7.3b' WHERE `key`= 'ushahidi_version';

0 commit comments

Comments
 (0)