Changeset 2357294
- Timestamp:
- 08/11/2020 02:13:30 PM (6 years ago)
- Location:
- show-hidecollapse-expand/trunk
- Files:
-
- 3 edited
-
ErrorLogging.php (modified) (1 diff)
-
bg_show_hide.php (modified) (1 diff)
-
readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
show-hidecollapse-expand/trunk/ErrorLogging.php
r1608201 r2357294 36 36 37 37 public static function getInstance() { 38 if( null == $this->_errorLogInstance) {39 $this->_errorLogInstance = new gmsp_LogFile();40 $$this->_errorLogInstance->_logFileHandle =41 fopen( $this->_errorLogInstance->_logFileName, 'a');38 if( null == self::$_errorLogInstance) { 39 self::$_errorLogInstance = new gmsp_LogFile(); 40 self::$_errorLogInstance->_logFileHandle = 41 fopen( self::$_errorLogInstance->_logFileName, 'a'); 42 42 /* TODO: Check if we have actualy opened a file */ 43 43 } 44 44 45 return $this->_errorLogInstance;45 return self::$_errorLogInstance; 46 46 } 47 47 -
show-hidecollapse-expand/trunk/bg_show_hide.php
r2204207 r2357294 5 5 Plugin URI: http://showhide.bunte-giraffe.de 6 6 Description: Save space on your pages, posts, sidebars. Hide the content before user clicks to see it. Collapse long lists, create FAQs & more. 7 Version: 1.2. 37 Version: 1.2.4 8 8 Author: Bunte Giraffe 9 9 Author URI: http://bunte-giraffe.de -
show-hidecollapse-expand/trunk/readme.txt
r2204207 r2357294 4 4 Tags: hide content, show content, collapse, expand, faq, questionnaire, question answer, show widget, hide widget, save space, organize content, collapse content, expand content, seo friendly collapse content 5 5 Requires at least: 4.2 6 Tested up to: 5. 37 Stable tag: 1.2. 36 Tested up to: 5.5 7 Stable tag: 1.2.4 8 8 License: GPLv2 9 9 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 90 90 == Changelog == 91 91 92 = 1.2.4 = 93 * Added compatibility for PHP 7.3+ 94 * Checked WP 5.5 compatibility 95 92 96 = 1.2.3 = 93 97 * Fixed apostrophes causing errors in collapse and expand texts
Note: See TracChangeset
for help on using the changeset viewer.