Thank you Andriy Khomych!
ressinel β created an issue.
ressinel β created an issue.
Hey!
I made this option globally and created MR.
Please, review this and let me know if we need additional changes.
ressinel β made their first commit to this issueβs fork.
ressinel β created an issue.
Here is how the table looks after fixes.
ressinel β created an issue.
Re-rolled patch #13 to make it compatible with Drupal 10.
Thanks a lot!
ressinel β made their first commit to this issueβs fork.
Add an example of how to delete multiple state items.
Replace table 'node' with 'node_field_data' to make code executable on the latest Drupal versions. The 'node' table has no 'uid' column.
Make examples executable for the latest Drupal versions. Change table 'node' with 'node_field_data' since the table 'node' has no 'uid' column.
Replace array() with [] in the query fields()
The extra article 'the' was deleted.
+
Patch for 6.0.x
Re-rolled patch for 6.0.x
ressinel β made their first commit to this issueβs fork.
I created MR for this Drupal 10 compatibility fixes issue.
Additionally, I fixed warning with default theme in test (see attachment).
ressinel β made their first commit to this issueβs fork.
I created MR with dependency of "graylog2/gelf-php": "^2.0"
(https://packagist.org/packages/graylog2/gelf-php#2.0.1) which requires psr/log: ^1|^2|^3
.
ressinel β made their first commit to this issueβs fork.
Rerolling patch #23 to allow to see toolbar actions when a user has administer taxonomy
permission.
I tested changes from MR and it works properly.
Attached patch for a handy and secure applying.
Rerolling patch #22 to fix the error:
Path: /taxonomy_manager/term/1111/edit?destination=/admin/structure/taxonomy_manager/voc/geography. Symfony\Component\HttpKernel\Exception\AccessDeniedHttpException: Could not find '{taxonomy_vocabulary}' request argument, therefore cannot check create access. in Drupal\Core\Routing\AccessAwareRouter->checkAccess() (line 115 of /var/www/html/backend/web/core/lib/Drupal/Core/Routing/AccessAwareRouter.php).
Patch with MR's last improvements for version 2.0.9
ressinel β made their first commit to this issueβs fork.
Updated patch to be able to apply to the latest 2.0.9 version.
ressinel β made their first commit to this issueβs fork.
Rerolled #12 for 2.0.x-dev
I faced exactly the same issue when using the view draggable functionality.
I attached the patch that checks whether the checkbox was added or not.
And adds it only if el.innerHTML
doesn't contain a checkbox.
I had the same issue.
You can fix it by adding hook_install()
to your module .install
file with rebuilding the needed scheduler:
/**
* Implements hook_install().
*/
function example_install() {
// Make sure the job scheduler is registered.
/** @var \Drupal\job_scheduler\JobScheduler $scheduler_manager */
$scheduler_manager = \Drupal::service('job_scheduler.manager');
$schedulers = example_cron_job_scheduler_info();
foreach ($schedulers as $id => $scheduler) {
$scheduler_manager->rebuild($id, $scheduler);
}
}
I have created MR with new subject property for the private_message_thread entity.
There is left rendering the subject wherever needed.