File tree 4 files changed +24
-4
lines changed
4 files changed +24
-4
lines changed Original file line number Diff line number Diff line change
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
+
1
16
Ushahidi 2.7.2 (Bug fix release) - 28/01/2014
2
17
-------------------------------------
3
18
Original file line number Diff line number Diff line change 3
3
* The Ushahidi Engine version
4
4
* Make sure to update the ushahidi_version in the settings table too!
5
5
*/
6
- $ config ['ushahidi_version ' ] = "2.7.2 " ;
6
+ $ config ['ushahidi_version ' ] = "2.7.3b " ;
7
7
8
8
/**
9
9
* The Ushahidi Engine DB revision number
10
10
* Increments when changes are made to the Ushahidi DB schema.
11
11
*/
12
- $ config ['ushahidi_db_version ' ] = "116 " ;
12
+ $ config ['ushahidi_db_version ' ] = "117 " ;
Original file line number Diff line number Diff line change
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' ;
Original file line number Diff line number Diff line change @@ -1460,5 +1460,5 @@ CREATE TABLE IF NOT EXISTS `verified` (
1460
1460
* Version information for table `settings`
1461
1461
*
1462
1462
*/
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' ;
You can’t perform that action at this time.
0 commit comments