summaryrefslogtreecommitdiff
path: root/modules/field
diff options
context:
space:
mode:
authorDavid Rothstein <drothstein@gmail.com>2013-03-10 21:51:19 -0400
committerDavid Rothstein <drothstein@gmail.com>2013-03-10 21:51:19 -0400
commit29d1b4e91125018dbe99901dfa6a6e21f87e6cc1 (patch)
tree8f216b0373746bc5476f45ee7792ef94dd6b8967 /modules/field
parent37b3f3e2cb67a2d7280bf6dff7372aa8d3179b07 (diff)
downloadbrdo-29d1b4e91125018dbe99901dfa6a6e21f87e6cc1.tar.gz
brdo-29d1b4e91125018dbe99901dfa6a6e21f87e6cc1.tar.bz2
Issue #1920340 by yched: Fixed Update URL of change notification for '_field_info_collate_fields() memory usage'.
Diffstat (limited to 'modules/field')
-rw-r--r--modules/field/field.info.class.inc2
-rw-r--r--modules/field/field.info.inc12
2 files changed, 7 insertions, 7 deletions
diff --git a/modules/field/field.info.class.inc b/modules/field/field.info.class.inc
index de50a1bf0..3b89898fb 100644
--- a/modules/field/field.info.class.inc
+++ b/modules/field/field.info.class.inc
@@ -217,7 +217,7 @@ class FieldInfo {
// Initialize empty arrays for all existing entity types and bundles.
// This is not strictly needed, but is done to preserve the behavior of
- // field_info_instances() before http://drupal.org/node/1880666.
+ // field_info_instances() before http://drupal.org/node/1915646.
foreach (field_info_bundles() as $existing_entity_type => $bundles) {
foreach ($bundles as $bundle => $bundle_info) {
$this->bundleInstances[$existing_entity_type][$bundle] = array();
diff --git a/modules/field/field.info.inc b/modules/field/field.info.inc
index 77113957d..396ad5fd1 100644
--- a/modules/field/field.info.inc
+++ b/modules/field/field.info.inc
@@ -68,7 +68,7 @@ function field_info_cache_clear() {
*
* Deprecated. This function is kept to ensure backwards compatibility, but has
* a serious performance impact, and should be absolutely avoided.
- * See http://drupal.org/node/1880666.
+ * See http://drupal.org/node/1915646.
*
* Use the regular field_info_*() API functions to access the information, or
* field_info_cache_clear() to clear the cached data.
@@ -234,7 +234,7 @@ function _field_info_collate_types($reset = FALSE) {
* Prepares a field definition for the current run-time context.
*
* The functionality has moved to the FieldInfo class. This function is kept as
- * a backwards-compatibility layer. See http://drupal.org/node/1880666.
+ * a backwards-compatibility layer. See http://drupal.org/node/1915646.
*
* @see FieldInfo::prepareField()
*/
@@ -247,7 +247,7 @@ function _field_info_prepare_field($field) {
* Prepares an instance definition for the current run-time context.
*
* The functionality has moved to the FieldInfo class. This function is kept as
- * a backwards-compatibility layer. See http://drupal.org/node/1880666.
+ * a backwards-compatibility layer. See http://drupal.org/node/1915646.
*
* @see FieldInfo::prepareInstance()
*/
@@ -260,7 +260,7 @@ function _field_info_prepare_instance($instance, $field) {
* Adapts display specifications to the current run-time context.
*
* The functionality has moved to the FieldInfo class. This function is kept as
- * a backwards-compatibility layer. See http://drupal.org/node/1880666.
+ * a backwards-compatibility layer. See http://drupal.org/node/1915646.
*
* @see FieldInfo::prepareInstanceDisplay()
*/
@@ -273,7 +273,7 @@ function _field_info_prepare_instance_display($field, $display) {
* Prepares widget specifications for the current run-time context.
*
* The functionality has moved to the FieldInfo class. This function is kept as
- * a backwards-compatibility layer. See http://drupal.org/node/1880666.
+ * a backwards-compatibility layer. See http://drupal.org/node/1915646.
*
* @see FieldInfo::prepareInstanceWidget()
*/
@@ -286,7 +286,7 @@ function _field_info_prepare_instance_widget($field, $widget) {
* Prepares 'extra fields' for the current run-time context.
*
* The functionality has moved to the FieldInfo class. This function is kept as
- * a backwards-compatibility layer. See http://drupal.org/node/1880666.
+ * a backwards-compatibility layer. See http://drupal.org/node/1915646.
*
* @see FieldInfo::prepareExtraFields()
*/