Changeset 3480015
- Timestamp:
- 03/11/2026 11:34:41 AM (3 weeks ago)
- Location:
- head-footer-code
- Files:
-
- 32 added
- 3 edited
-
tags/1.5.5 (added)
-
tags/1.5.5/LICENSE (added)
-
tags/1.5.5/assets (added)
-
tags/1.5.5/assets/css (added)
-
tags/1.5.5/assets/css/admin.min.css (added)
-
tags/1.5.5/assets/css/admin.min.css.map (added)
-
tags/1.5.5/assets/css/edit.min.css (added)
-
tags/1.5.5/assets/css/edit.min.css.map (added)
-
tags/1.5.5/assets/scss (added)
-
tags/1.5.5/assets/scss/admin.scss (added)
-
tags/1.5.5/assets/scss/edit.scss (added)
-
tags/1.5.5/changelog.txt (added)
-
tags/1.5.5/classes (added)
-
tags/1.5.5/classes/autoload.php (added)
-
tags/1.5.5/classes/techwebux (added)
-
tags/1.5.5/classes/techwebux/hfc (added)
-
tags/1.5.5/classes/techwebux/hfc/class-common.php (added)
-
tags/1.5.5/classes/techwebux/hfc/class-front.php (added)
-
tags/1.5.5/classes/techwebux/hfc/class-grid.php (added)
-
tags/1.5.5/classes/techwebux/hfc/class-main.php (added)
-
tags/1.5.5/classes/techwebux/hfc/class-metabox-article.php (added)
-
tags/1.5.5/classes/techwebux/hfc/class-metabox-taxonomy.php (added)
-
tags/1.5.5/classes/techwebux/hfc/class-plugin-info.php (added)
-
tags/1.5.5/classes/techwebux/hfc/class-settings.php (added)
-
tags/1.5.5/head-footer-code.php (added)
-
tags/1.5.5/index.php (added)
-
tags/1.5.5/readme.txt (added)
-
tags/1.5.5/templates (added)
-
tags/1.5.5/templates/hfc-form.php (added)
-
tags/1.5.5/templates/settings.php (added)
-
tags/1.5.5/uninstall.php (added)
-
tags/1.5.5/update.php (added)
-
trunk/head-footer-code.php (modified) (2 diffs)
-
trunk/readme.txt (modified) (2 diffs)
-
trunk/update.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
head-footer-code/trunk/head-footer-code.php
r3479175 r3480015 12 12 * Plugin URI: https://urosevic.net/wordpress/plugins/head-footer-code/ 13 13 * Description: Easy add site-wide, category or article specific custom code before the closing <strong></head></strong> and <strong></body></strong> or after opening <strong><body></strong> HTML tag. 14 * Version: 1.5. 414 * Version: 1.5.5 15 15 * Author: Aleksandar Urošević 16 16 * Author URI: https://urosevic.net/ … … 31 31 define( 'HFC__MIN_WP', '5.2' ); 32 32 33 define( 'HFC_VER', '1.5. 4' );33 define( 'HFC_VER', '1.5.5' ); 34 34 define( 'HFC_VER_DB', '11' ); 35 35 define( 'HFC_FILE', __FILE__ ); -
head-footer-code/trunk/readme.txt
r3479175 r3480015 6 6 Requires at least: 5.2 7 7 Tested up to: 7.0 8 Stable tag: 1.5. 48 Stable tag: 1.5.5 9 9 Requires PHP: 5.6 10 10 License: GPLv3 … … 194 194 ## Changelog 195 195 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 196 199 ### 1.5.4 (2026-03-10) 197 200 * New: Add dynamic support for all public taxonomies (eg, Tags, Product Categories) -
head-footer-code/trunk/update.php
r3479175 r3480015 22 22 */ 23 23 function auhfc_update() { 24 // Disable PHP timeout for running updates.25 set_time_limit( 0 );26 27 24 // Get the current database schema version number. 28 25 $current_db_ver = get_option( 'auhfc_db_ver', 0 );
Note: See TracChangeset
for help on using the changeset viewer.