# File raggle, line 1550 def move_up(id) if id > 0 pitem = @feeds[id - 1] @feeds[id - 1] = @feeds[id] @feeds[id] = pitem id - 1 else id end end