Plugin Directory

Changeset 3480015


Ignore:
Timestamp:
03/11/2026 11:34:41 AM (3 weeks ago)
Author:
urkekg
Message:

Quick fix release

Location:
head-footer-code
Files:
32 added
3 edited

Legend:

Unmodified
Added
Removed
  • head-footer-code/trunk/head-footer-code.php

    r3479175 r3480015  
    1212 * Plugin URI:  https://urosevic.net/wordpress/plugins/head-footer-code/
    1313 * Description: Easy add site-wide, category or article specific custom code before the closing <strong>&lt;/head&gt;</strong> and <strong>&lt;/body&gt;</strong> or after opening <strong>&lt;body&gt;</strong> HTML tag.
    14  * Version:     1.5.4
     14 * Version:     1.5.5
    1515 * Author:      Aleksandar Urošević
    1616 * Author URI:  https://urosevic.net/
     
    3131define( 'HFC__MIN_WP', '5.2' );
    3232
    33 define( 'HFC_VER', '1.5.4' );
     33define( 'HFC_VER', '1.5.5' );
    3434define( 'HFC_VER_DB', '11' );
    3535define( 'HFC_FILE', __FILE__ );
  • head-footer-code/trunk/readme.txt

    r3479175 r3480015  
    66Requires at least: 5.2
    77Tested up to: 7.0
    8 Stable tag: 1.5.4
     8Stable tag: 1.5.5
    99Requires PHP: 5.6
    1010License: GPLv3
     
    194194## Changelog
    195195
     196### 1.5.5 (2026-03-11)
     197* Fix: Remove `set_time_limit` from `update.php` to prevent fatal error on servers where it's disabled
     198
    196199### 1.5.4 (2026-03-10)
    197200* New: Add dynamic support for all public taxonomies (eg, Tags, Product Categories)
  • head-footer-code/trunk/update.php

    r3479175 r3480015  
    2222 */
    2323function auhfc_update() {
    24     // Disable PHP timeout for running updates.
    25     set_time_limit( 0 );
    26 
    2724    // Get the current database schema version number.
    2825    $current_db_ver = get_option( 'auhfc_db_ver', 0 );
Note: See TracChangeset for help on using the changeset viewer.