You are here

function diff_admin_paths_alter in Diff 7.2

Same name and namespace in other branches
  1. 7.3 diff.module \diff_admin_paths_alter()

Implements hook_admin_paths_alter().

File

./diff.module, line 101
Provides functionality to show a diff between two node revisions.

Code

function diff_admin_paths_alter(&$paths) {

  // Treat all user pages as administrative.
  $paths['node/*/revisions/view/*/*'] = TRUE;
}