Single bundle check in field_entity_field_info() is not safe
That function currently does this to check if an entity_type supports bundles or not:<?php$optional = $bundle_name != $entity_type;?>There is AFAIK no such requirement, you could have an entity...
View ArticleAdd a search field to the test overview page
See #1848064: Allow to filter modules by arbitrary search strings on the Modules page.I think it would be *really* useful to have a similar search field on that page as well, especially when you are...
View ArticleRestore profile flag to allow multiple profile instances per user
Follow-up to: #1668292: Move simplified Profile2 module into coreProblemThe is a 1:1 relationship between a user account and each profile (type) currently, but certain profile types may need to be...
View ArticleAllow contrib to disable default integration of a profile type into user...
Follow-up to: #1668292: Move simplified Profile2 module into coreProblemContributed modules/appliances may want/need to output/manage certain profile types on their own, omitting the default output and...
View Articleadd the test class to make it easier to match with the bot
Problem:my test results say "taxonomy/Tests/TermTest" failed and I wanted to rerun that test locally in the testing ui, and so I had to find that file, open it, and look for:'name' => 'Taxonomy term...
View ArticleListing for Overlay module's layout changes when viewed within the Overlay
Some of the styling in overlay-child.css is affecting the label within the Overlay listing on the Extend page. This is because the label has an id of 'overlay'.I'm not sure if this is a fix for the...
View ArticleFooter link styling overrides contextual links
The selector on footer links affects contextual links.AttachmentSizeStatusTest resultOperationsScreen Shot 2013-02-17 at 18.24.08.png9.99 KBIgnored: Check issue status.NoneNone
View ArticleReplace views_ui_cache_set with a method on the ViewUI object
At the moment views_ui_cache_set() just deals with the ViewsUI object, so it seems to be perfectly logical, to have that as a method on the object.
View ArticleImprove and clarify User|Profile help pages and UIs to clarify when fields on...
Follow-up to: #1668292: Move simplified Profile2 module into coreProblemFor non-developers, it is not clear when it is appropriate to use fields on user accounts directly vs. fields on a profile...
View ArticleNotices after installation is completed
I ran a clean install on PHP 5.4.3On the last page of the installation process I get notices: Notice: Undefined index: module in function _field_info_prepare_instance_display() (line 355 file...
View ArticleReturn "HTTP 304: Not Modified" for pictures in private filesystem too
I'm using drupal restricted to family and friends, so I've switches after some preparation from public to private files, as I also wanted to restrict downloads to authenticated users.While the public...
View Articlehook_help() does not support language prefix
Current code in node.module<?phpfunction node_help($path, $arg) {... case 'node/%/edit': $node = node_load($arg[1]); $type = node_type_load($node->type); return...
View ArticleRefactor custom_block upgrade path to create tables using hook_schema_0()...
Follow up for #1871772-108: Convert custom blocks to content entitiesProblem/Motivation+++ b/core/modules/block/block.install @@ -194,6 +195,246 @@ function block_update_8006() { +...
View ArticleSet page title when editing custom block type
Follow up for #1871772-108: Convert custom blocks to content entitiesProblem/Motivation+++ b/core/modules/block/custom_block/custom_block.admin.inc @@ -0,0 +1,98 @@ +function...
View ArticleRefactor machine name and title of custom block default body field
Follow up for #1871772-108: Convert custom blocks to content entitiesProblem/Motivation+++ b/core/modules/block/custom_block/custom_block.module @@ -53,3 +157,161 @@ function...
View ArticleInvestigate adding a _view hook for blocks and use that to set contextual...
Follow up for #1871772: Convert custom blocks to content entitiesProblem/Motivation+++ b/core/modules/block/custom_block/custom_block.module @@ -53,3 +157,161 @@ function...
View ArticleImprove DX around setting the theme when adding a (custom) block
Follow up for #1871772-108: Convert custom blocks to content entitiesProblem/Motivation+++ b/core/modules/block/custom_block/custom_block.pages.inc @@ -0,0 +1,153 @@ +function custom_block_add_page() {...
View ArticleRemove theme_node_add_list and theme_custom_block_add_list in favour of...
Follow up for #1871772-108: Convert custom blocks to content entitiesProblem/Motivation+++ b/core/modules/block/custom_block/custom_block.pages.inc @@ -0,0 +1,153 @@ + return array('#theme' =>...
View ArticleSimplify custom_block_menu_local_tasks_alter().
Follow up for #1871772-108: Convert custom blocks to content entitiesProblem/Motivation+++ b/core/modules/block/custom_block/custom_block.module @@ -5,29 +5,129 @@ +function...
View ArticleResolve usage of 'view content' permission in modules other than Node
Follow up for #1871772-108: Convert custom blocks to content entitiesProblem/Motivation+++ b/core/modules/block/custom_block/lib/Drupal/custom_block/CustomBlockAccessController.php @@ -0,0 +1,47 @@ +...
View Article