updated core to 7.73
This commit is contained in:
@@ -0,0 +1,28 @@
|
||||
Installation profiles define additional steps that run after the base
|
||||
installation provided by Drupal core when Drupal is first installed.
|
||||
|
||||
WHAT TO PLACE IN THIS DIRECTORY?
|
||||
--------------------------------
|
||||
|
||||
Place downloaded and custom installation profiles in this directory.
|
||||
Installation profiles are generally provided as part of a Drupal distribution.
|
||||
They only impact the installation of your site. They do not have any effect on
|
||||
an already running site.
|
||||
|
||||
DOWNLOAD ADDITIONAL DISTRIBUTIONS
|
||||
---------------------------------
|
||||
|
||||
Contributed distributions from the Drupal community may be downloaded at
|
||||
https://www.drupal.org/project/project_distribution.
|
||||
|
||||
MULTISITE CONFIGURATION
|
||||
-----------------------
|
||||
|
||||
In multisite configurations, installation profiles found in this directory are
|
||||
available to all sites during their initial site installation.
|
||||
|
||||
MORE INFORMATION
|
||||
----------------
|
||||
|
||||
Refer to the "Installation profiles" section of the README.txt in the Drupal
|
||||
root directory for further information on extending Drupal with custom profiles.
|
||||
@@ -5,8 +5,7 @@ core = 7.x
|
||||
dependencies[] = block
|
||||
dependencies[] = dblog
|
||||
|
||||
; Information added by drupal.org packaging script on 2013-04-03
|
||||
version = "7.22"
|
||||
; Information added by Drupal.org packaging script on 2020-09-16
|
||||
version = "7.73"
|
||||
project = "drupal"
|
||||
datestamp = "1365027012"
|
||||
|
||||
datestamp = "1600272641"
|
||||
|
||||
@@ -24,8 +24,7 @@ dependencies[] = field_ui
|
||||
dependencies[] = file
|
||||
dependencies[] = rdf
|
||||
|
||||
; Information added by drupal.org packaging script on 2013-04-03
|
||||
version = "7.22"
|
||||
; Information added by Drupal.org packaging script on 2020-09-16
|
||||
version = "7.73"
|
||||
project = "drupal"
|
||||
datestamp = "1365027012"
|
||||
|
||||
datestamp = "1600272641"
|
||||
|
||||
@@ -275,13 +275,10 @@ function standard_install() {
|
||||
|
||||
// Create a default vocabulary named "Tags", enabled for the 'article' content type.
|
||||
$description = st('Use tags to group articles on similar topics into categories.');
|
||||
$help = st('Enter a comma-separated list of words to describe your content.');
|
||||
$vocabulary = (object) array(
|
||||
'name' => st('Tags'),
|
||||
'description' => $description,
|
||||
'machine_name' => 'tags',
|
||||
'help' => $help,
|
||||
|
||||
);
|
||||
taxonomy_vocabulary_save($vocabulary);
|
||||
|
||||
@@ -301,12 +298,13 @@ function standard_install() {
|
||||
);
|
||||
field_create_field($field);
|
||||
|
||||
$help = st('Enter a comma-separated list of words to describe your content.');
|
||||
$instance = array(
|
||||
'field_name' => 'field_' . $vocabulary->machine_name,
|
||||
'entity_type' => 'node',
|
||||
'label' => 'Tags',
|
||||
'bundle' => 'article',
|
||||
'description' => $vocabulary->help,
|
||||
'description' => $help,
|
||||
'widget' => array(
|
||||
'type' => 'taxonomy_autocomplete',
|
||||
'weight' => -4,
|
||||
|
||||
+3
-4
@@ -6,8 +6,7 @@ core = 7.x
|
||||
hidden = TRUE
|
||||
files[] = drupal_system_listing_compatible_test.test
|
||||
|
||||
; Information added by drupal.org packaging script on 2013-04-03
|
||||
version = "7.22"
|
||||
; Information added by Drupal.org packaging script on 2020-09-16
|
||||
version = "7.73"
|
||||
project = "drupal"
|
||||
datestamp = "1365027012"
|
||||
|
||||
datestamp = "1600272641"
|
||||
|
||||
+3
-4
@@ -8,8 +8,7 @@ version = VERSION
|
||||
core = 6.x
|
||||
hidden = TRUE
|
||||
|
||||
; Information added by drupal.org packaging script on 2013-04-03
|
||||
version = "7.22"
|
||||
; Information added by Drupal.org packaging script on 2020-09-16
|
||||
version = "7.73"
|
||||
project = "drupal"
|
||||
datestamp = "1365027012"
|
||||
|
||||
datestamp = "1600272641"
|
||||
|
||||
@@ -4,8 +4,7 @@ version = VERSION
|
||||
core = 7.x
|
||||
hidden = TRUE
|
||||
|
||||
; Information added by drupal.org packaging script on 2013-04-03
|
||||
version = "7.22"
|
||||
; Information added by Drupal.org packaging script on 2020-09-16
|
||||
version = "7.73"
|
||||
project = "drupal"
|
||||
datestamp = "1365027012"
|
||||
|
||||
datestamp = "1600272641"
|
||||
|
||||
Reference in New Issue
Block a user