Skip to content

Commit 5c86373

Browse files
committed
Hotfix for missing function
1 parent 475543d commit 5c86373

File tree

2 files changed

+16
-3
lines changed

2 files changed

+16
-3
lines changed

README.txt

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ Tags: infinite scroll, load more, lazy load, endless scroll, ajax load more
55
Requires at least: 5.0
66
Requires PHP: 5.6
77
Tested up to: 6.8
8-
Stable tag: 7.4.0
8+
Stable tag: 7.4.0.1
99
License: GPLv2 or later
1010
License URI: http://www.gnu.org/licenses/gpl-2.0.html
1111

@@ -269,6 +269,9 @@ How to install Ajax Load More.
269269

270270
== Changelog ==
271271

272+
= 7.4.0.1 - May 27, 2025 =
273+
* HOTFIX: Quick hotfix for potential fatal error.
274+
272275
= 7.4.0 - May 27, 2025 =
273276
* NEW: Added required updates for table layouts and paging add-on.
274277
* NEW: Added required updates for background processing feature of the Filters add-on.

ajax-load-more.php

Lines changed: 12 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,14 +7,14 @@
77
* Author: Darren Cooney
88
* Twitter: @KaptonKaos
99
* Author URI: https://connekthq.com
10-
* Version: 7.4.0
10+
* Version: 7.4.0.1
1111
* License: GPL
1212
* Copyright: Darren Cooney & Connekt Media
1313
*
1414
* @package AjaxLoadMore
1515
*/
1616

17-
define( 'ALM_VERSION', '7.4.0' );
17+
define( 'ALM_VERSION', '7.4.0.1' );
1818
define( 'ALM_RELEASE', 'May 27, 2025' );
1919
define( 'ALM_STORE_URL', 'https://connekthq.com' );
2020

@@ -296,6 +296,16 @@ public static function alm_mkdir( $dir ) {
296296
}
297297
}
298298

299+
/**
300+
* Returns add-on data (admin/admin-functions.php).
301+
*
302+
* @since 2.0.0
303+
* @return @addons
304+
*/
305+
public function alm_return_addons() {
306+
return alm_get_addons();
307+
}
308+
299309
/**
300310
* Add plugin action links to WP plugin screen.
301311
*

0 commit comments

Comments
 (0)