Changeset 2823118
- Timestamp:
- 11/23/2022 07:02:10 PM (3 years ago)
- Location:
- stockpack/trunk
- Files:
-
- 3 edited
-
readme.txt (modified) (2 diffs)
-
stockpack.php (modified) (2 diffs)
-
vendor/tareq1988/wordpress-settings-api-class/src/class.settings-api.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
stockpack/trunk/readme.txt
r2816792 r2823118 3 3 Tags: stock images, adobe stock, unsplash, getty, istock, pixabay, pexels 4 4 Requires at least: 4.6 5 Tested up to: 6.1. 06 Stable tag: 3.3. 55 Tested up to: 6.1.1 6 Stable tag: 3.3.6 7 7 License: GPL 8 8 License URI: https://www.gnu.org/licenses/gpl-3.0.en.html … … 134 134 == Changelog == 135 135 136 = 3.3.4 = 137 Regenerated composer with -a flag 136 = 3.3.6 = 137 Hack to fix vendor package for php 8.1 compatibility 138 139 = 3.3.5 = 140 Regenerated composer with -oa flag 138 141 139 142 = 3.3.4 = -
stockpack/trunk/stockpack.php
r2816792 r2823118 6 6 * Author: Derikon Development 7 7 * Author URI: https://derikon.com/ 8 * Version: 3.3. 58 * Version: 3.3.6 9 9 * Text Domain: stockpack 10 10 * Domain Path: /languages … … 20 20 * but WITHOUT ANY WARRANTY; without even the implied warranty of 21 21 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 22 * GNU General Public License for more details .xdebu22 * GNU General Public License for more details 23 23 * 24 24 * You should have received a copy of the GNU General Public License -
stockpack/trunk/vendor/tareq1988/wordpress-settings-api-class/src/class.settings-api.php
r2295158 r2823118 106 106 if ( isset($section['desc']) && !empty($section['desc']) ) { 107 107 $section['desc'] = '<div class="inside">'.$section['desc'].'</div>'; 108 $callback = create_function('', 'echo "'.str_replace('"', '\"', $section['desc']).'";');108 $callback = function() use ($section) { echo str_replace('"', '\"', $section['desc']).'";'; }; 109 109 } else if ( isset( $section['callback'] ) ) { 110 110 $callback = $section['callback'];
Note: See TracChangeset
for help on using the changeset viewer.