You are here

function finder_update_last_removed in Finder 7.2

Implements hook_update_last_removed().

File

./finder.install, line 179
Finder module install file.

Code

function finder_update_last_removed() {

  // Removed updates prior to Finder 2.x because they are simply incompatible
  // with the new code.  The severity of the 720* upgrade requires admins to
  // check their settings anyway, which is what most of the upgrade code was
  // for.
  // Actually the most recently removed was 7100 but it is similar to 6102
  // so that is all that will be mentioned here, plus relatively few people
  // would have updated Finder to D7 before Finder 7.x-2.x.
  return 6102;
}