equal
deleted
inserted
replaced
635 // Let's see, what do we have here... |
635 // Let's see, what do we have here... |
636 switch ( $log_entry['action'] ) |
636 switch ( $log_entry['action'] ) |
637 { |
637 { |
638 case 'rename': |
638 case 'rename': |
639 // Page was renamed, let the rename method handle this |
639 // Page was renamed, let the rename method handle this |
640 return array_merge($this->rename($log_entry['edit_summary']), array('dateline' => $dateline, 'action' => $log_entry['action'])); |
640 return array_merge($this->rename_page($log_entry['edit_summary']), array('dateline' => $dateline, 'action' => $log_entry['action'])); |
641 break; |
641 break; |
642 case 'prot': |
642 case 'prot': |
643 case 'unprot': |
643 case 'unprot': |
644 case 'semiprot': |
644 case 'semiprot': |
645 return array_merge($this->protect_page(intval($log_entry['page_text']), '__REVERSION__'), array('dateline' => $dateline, 'action' => $log_entry['action'])); |
645 return array_merge($this->protect_page(intval($log_entry['page_text']), '__REVERSION__'), array('dateline' => $dateline, 'action' => $log_entry['action'])); |