Skip to content

Commit

Permalink
Merge pull request #411 from codepress/release/4.7.9
Browse files Browse the repository at this point in the history
Release 4.7.9
  • Loading branch information
DGStefan authored Nov 5, 2024
2 parents feabb76 + 6cc0bb1 commit 853f4a3
Show file tree
Hide file tree
Showing 7 changed files with 576 additions and 248 deletions.
3 changes: 2 additions & 1 deletion classes/Settings/Column/TermLink.php
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,8 @@ public function format($value, $original_value)
}
break;
case 'edit' :
$link = get_edit_term_link($original_value);
$term = get_term($original_value);
$link = get_edit_term_link($term, $term->taxonomy);

break;
}
Expand Down
4 changes: 2 additions & 2 deletions codepress-admin-columns.php
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?php
/*
Plugin Name: Admin Columns
Version: 4.7.8
Version: 4.7.9
Description: Customize columns on the administration screens for post(types), pages, media, comments, links and users with an easy to use drag-and-drop interface.
Author: AdminColumns.com
Author URI: https://www.admincolumns.com
Expand Down Expand Up @@ -37,7 +37,7 @@
}

define('AC_FILE', __FILE__);
define('AC_VERSION', '4.7.8');
define('AC_VERSION', '4.7.9');

require_once __DIR__ . '/classes/Dependencies.php';

Expand Down
Binary file modified languages/codepress-admin-columns-nl_NL.mo
Binary file not shown.
4 changes: 2 additions & 2 deletions languages/codepress-admin-columns-nl_NL.po
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# This file is distributed under the same license as the Plugins - Admin Columns - Stable (latest release) package.
msgid ""
msgstr ""
"PO-Revision-Date: 2024-07-30 12:43:22+0000\n"
"PO-Revision-Date: 2024-10-23 19:20:32+0000\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
Expand Down Expand Up @@ -2329,7 +2329,7 @@ msgstr "Bijlagen"
#: classes/Column/Media/Preview.php:14
#: classes/Settings/Column/NumberFormat.php:78
msgid "Preview"
msgstr "Voorvertoning"
msgstr "Voorbeeld"

#: classes/Column/Media/Width.php:17
#: classes/Settings/Column/FileMetaVideo.php:18
Expand Down
2 changes: 1 addition & 1 deletion languages/codepress-admin-columns.pot
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Language-Team: Admin Columns <info@admincolumns.com>\n"
"Last-Translator: Codepress <info@codepress.nl\n"
"POT-Creation-Date: 2024-10-01 08:10+0000\n"
"POT-Creation-Date: 2024-11-05 08:26+0000\n"
"X-Poedit-Basepath: ..\n"
"X-Poedit-KeywordsList: __;_e;_ex:1,2c;_n:1,2;_n_noop:1,2;_nx:1,2,4c;_nx_noop:1,2,3c;_x:1,2c;esc_attr__;esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c\n"
"X-Poedit-SearchPath-0: .\n"
Expand Down
8 changes: 7 additions & 1 deletion readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Tags: admin, column, columns, table, tables
Requires at least: 4.7.3
Tested up to: 6.6.2
Requires PHP: 7.2
Stable tag: 4.7.8
Stable tag: 4.7.9
License: GPLv2
License URI: https://www.gnu.org/licenses/old-licenses/gpl-2.0.html

Expand Down Expand Up @@ -210,6 +210,12 @@ You can find a list of the available actions and filters (and examples on how to

== Changelog ==

= 4.7.9 =
Release Date: November 5th, 2024

* [Improved] Better edit term link with taxonomy as parameter


= 4.7.8 =
Release Date: October 1st, 2024

Expand Down
803 changes: 562 additions & 241 deletions src/package-lock.json

Large diffs are not rendered by default.

0 comments on commit 853f4a3

Please sign in to comment.