Problem/Motivation

The header is defined as:

  // List tracked content types.
  $headers = array(
    'Content Type',
    'Machine Name',
    'Revisions to Keep',
    'Candidate nodes',
    ' ',
  );

But Drupal use the strings as '[Upper]aaaaa [lower]bbbbb.

Proposed resolution

Change the strings to, and change the last header to 'Operations'

  // List tracked content types.
  $headers = array(
    'Content type',
    'Machine name',
    'Revisions to keep',
    'Candidate nodes',
    'Operations',
  );

Remaining tasks

None.

User interface changes

In the Node Revision Delete Administration Page (admin/config/content/node_revision_delete) you will see the table header like this:

table header

API changes

None.

Data model changes

None.

Support from Acquia helps fund testing for Drupal Acquia logo

Comments

adriancid created an issue. See original summary.

adriancid’s picture

Status: Active » Needs review
Issue tags: +Novice, +User interface
FileSize
613 bytes
rodrigoac’s picture

Assigned: adriancid » rodrigoac
rodrigoac’s picture

FileSize
11.93 KB
11.29 KB

Hi people!

I apply the patch and works good for me !

Thanks @adriancid !

rodrigoac’s picture

Assigned: rodrigoac » Unassigned
Status: Needs review » Reviewed & tested by the community

  • adriancid committed 3207905 on 7.x-2.x
    Issue #2869163 by adriancid, rodrigoac: Improve the table header in the...
adriancid’s picture

Status: Reviewed & tested by the community » Fixed

Status: Fixed » Closed (fixed)

Automatically closed - issue fixed for 2 weeks with no activity.

adriancid’s picture