blob: 3a9200b51d607892f248909b4415da7e82160b45 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
<?php
/**
* Elgg 1.8.0.1 upgrade 2011092500
* forum_reply_river_view
*
* The forum reply river view is in a new location in Elgg 1.8
*/
$query = "UPDATE {$CONFIG->dbprefix}river SET view='river/annotation/group_topic_post/reply',
action_type='reply'
WHERE view='river/forum/create' AND action_type='create'";
update_data($query);
|