You are here

function _pathauto_version in Pathauto 5

Returns the version of this release of the pathauto module.

Return value

array An array with keys 'text' and 'build' containing the text version and build ID of this release, respectively.

1 call to _pathauto_version()
_pathauto_update in ./pathauto.module
Makes updates to saved variables and the database structure.

File

./pathauto.module, line 501

Code

function _pathauto_version() {
  return array(
    "text" => "2005-9-18",
    "build" => 5,
  );
}