2011123100-1.8.2-fix_friend_river-b17e7ff8345c2269.php 305 B

12345678910111213
  1. <?php
  2. /**
  3. * Elgg 1.8.2 upgrade 2011123100
  4. * fix_friend_river
  5. *
  6. * Action type was incorrect due to previoud friends river upgrade
  7. */
  8. $query = "UPDATE {$CONFIG->dbprefix}river
  9. SET action_type='friend'
  10. WHERE view='river/relationship/friend/create' AND action_type='create'";
  11. update_data($query);