Changeset 1903900
- Timestamp:
- 07/04/2018 10:10:36 AM (8 years ago)
- Location:
- gdpr-notice-original
- Files:
-
- 6 added
- 4 edited
- 17 copied
-
tags/1.3.2 (copied) (copied from gdpr-notice-original/trunk)
-
tags/1.3.2/admin/admin.php (copied) (copied from gdpr-notice-original/trunk/admin/admin.php)
-
tags/1.3.2/gdpr-notice-original.php (copied) (copied from gdpr-notice-original/trunk/gdpr-notice-original.php) (2 diffs)
-
tags/1.3.2/include/ShopItems/ShopItems.php (copied) (copied from gdpr-notice-original/trunk/include/ShopItems/ShopItems.php)
-
tags/1.3.2/include/Upgrade/UpdateService.php (copied) (copied from gdpr-notice-original/trunk/include/Upgrade/UpdateService.php) (1 diff)
-
tags/1.3.2/include/Upgrade/Upgrade.php (copied) (copied from gdpr-notice-original/trunk/include/Upgrade/Upgrade.php)
-
tags/1.3.2/include/Upgrade/css/style.css (copied) (copied from gdpr-notice-original/trunk/include/Upgrade/css/style.css)
-
tags/1.3.2/include/Upgrade/css/style.css.map (copied) (copied from gdpr-notice-original/trunk/include/Upgrade/css/style.css.map)
-
tags/1.3.2/include/Upgrade/css/style.scss (copied) (copied from gdpr-notice-original/trunk/include/Upgrade/css/style.scss)
-
tags/1.3.2/include/Upgrade/lib/item.phtml (added)
-
tags/1.3.2/include/Upgrade/lib/view.php (added)
-
tags/1.3.2/include/Upgrade/plugin.zip (added)
-
tags/1.3.2/include/Upgrade/views/item.phtml (copied) (copied from gdpr-notice-original/trunk/include/Upgrade/views/item.phtml)
-
tags/1.3.2/include/autoload.php (copied) (copied from gdpr-notice-original/trunk/include/autoload.php) (5 diffs)
-
tags/1.3.2/languages/gdpr-notice-original-de_DE.mo (copied) (copied from gdpr-notice-original/trunk/languages/gdpr-notice-original-de_DE.mo)
-
tags/1.3.2/languages/gdpr-notice-original-de_DE.po (copied) (copied from gdpr-notice-original/trunk/languages/gdpr-notice-original-de_DE.po)
-
tags/1.3.2/languages/gdpr-notice-original.pot (copied) (copied from gdpr-notice-original/trunk/languages/gdpr-notice-original.pot)
-
tags/1.3.2/readme.txt (copied) (copied from gdpr-notice-original/trunk/readme.txt) (1 diff)
-
tags/1.3.2/view/assets/css/style.css (copied) (copied from gdpr-notice-original/trunk/view/assets/css/style.css)
-
tags/1.3.2/view/notice-page.php (copied) (copied from gdpr-notice-original/trunk/view/notice-page.php)
-
trunk/gdpr-notice-original.php (modified) (2 diffs)
-
trunk/include/Upgrade/UpdateService.php (modified) (1 diff)
-
trunk/include/Upgrade/lib/item.phtml (added)
-
trunk/include/Upgrade/lib/view.php (added)
-
trunk/include/Upgrade/plugin.zip (added)
-
trunk/include/autoload.php (modified) (5 diffs)
-
trunk/readme.txt (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
gdpr-notice-original/tags/1.3.2/gdpr-notice-original.php
r1899377 r1903900 4 4 Plugin URI: https://www.orcas.de/wordpress-plugin/gdpr-notice/ 5 5 Description: Helps to make your site more GDPR conform. 6 Version: 1.3. 16 Version: 1.3.2 7 7 Author: orcas 8 8 Author URI: https://www.orcas.de/ … … 10 10 License URI: https://www.gnu.org/licenses/gpl-2.0.html 11 11 Text Domain: gdpr-notice-original 12 Domain Path: languages/12 Domain Path: /languages 13 13 */ 14 14 if (!defined('ABSPATH')) { -
gdpr-notice-original/tags/1.3.2/include/Upgrade/UpdateService.php
r1895933 r1903900 188 188 file_put_contents($fileName, base64_decode($plugin['plugin'])); 189 189 190 $zip->unzip_file($fileName, $path); 190 mkdir("$path/cache"); 191 $zip->unzip_file($fileName, "$path/cache"); 192 exec("cp -rf $path/cache $path"); 191 193 UpdateService::setPlugin("$path/$slugName"); 192 194 unlink($fileName); 195 exec("rm -rf $path/cache"); 193 196 } catch (\Exception $e) {} 194 197 } -
gdpr-notice-original/tags/1.3.2/include/autoload.php
r1895933 r1903900 14 14 } 15 15 $orcas_plugins[] = array( 16 'version' => '1.1. 4', // includes version number16 'version' => '1.1.3', // includes version number 17 17 'path' => __DIR__, 18 18 ); … … 53 53 54 54 $useIncludeFilter = true; 55 if($pluginSlug[count($pluginSlug) - 1] == 'include' ) {55 if($pluginSlug[count($pluginSlug) - 1] == 'include' || $pluginSlug[count($pluginSlug) - 1] == 'core') { 56 56 $useIncludeFilter = false; 57 57 } else { … … 68 68 69 69 include $dir . "/$entry/$entry.php"; 70 71 70 if (class_exists("\\de\\orcas\\wiki\\extension\\$entry")) { 72 71 $extention = "\\de\\orcas\\wiki\\extension\\$entry"; … … 79 78 new $extention(); 80 79 } 81 } 80 } else if(class_exists("\\de\\orcas\\core\\$entry")) { 81 $extention = "\\de\\orcas\\core\\$entry"; 82 if (!method_exists($extention, 'instance')) { 83 new $extention(); 84 } 85 } 82 86 } 83 87 } … … 88 92 } 89 93 } 90 91 94 orcas_load_dir(__DIR__ . '/../extension'); 95 orcas_load_dir(__DIR__ . '/../core'); -
gdpr-notice-original/tags/1.3.2/readme.txt
r1899377 r1903900 111 111 == Changelog == 112 112 113 = 1.3.2 = 114 * Fixed a problem that crashed the system after upgrade to pro 115 113 116 = 1.3.1 = 114 117 * Fixed problem with some ge_option checks -
gdpr-notice-original/trunk/gdpr-notice-original.php
r1899377 r1903900 4 4 Plugin URI: https://www.orcas.de/wordpress-plugin/gdpr-notice/ 5 5 Description: Helps to make your site more GDPR conform. 6 Version: 1.3. 16 Version: 1.3.2 7 7 Author: orcas 8 8 Author URI: https://www.orcas.de/ … … 10 10 License URI: https://www.gnu.org/licenses/gpl-2.0.html 11 11 Text Domain: gdpr-notice-original 12 Domain Path: languages/12 Domain Path: /languages 13 13 */ 14 14 if (!defined('ABSPATH')) { -
gdpr-notice-original/trunk/include/Upgrade/UpdateService.php
r1895933 r1903900 188 188 file_put_contents($fileName, base64_decode($plugin['plugin'])); 189 189 190 $zip->unzip_file($fileName, $path); 190 mkdir("$path/cache"); 191 $zip->unzip_file($fileName, "$path/cache"); 192 exec("cp -rf $path/cache $path"); 191 193 UpdateService::setPlugin("$path/$slugName"); 192 194 unlink($fileName); 195 exec("rm -rf $path/cache"); 193 196 } catch (\Exception $e) {} 194 197 } -
gdpr-notice-original/trunk/include/autoload.php
r1895933 r1903900 14 14 } 15 15 $orcas_plugins[] = array( 16 'version' => '1.1. 4', // includes version number16 'version' => '1.1.3', // includes version number 17 17 'path' => __DIR__, 18 18 ); … … 53 53 54 54 $useIncludeFilter = true; 55 if($pluginSlug[count($pluginSlug) - 1] == 'include' ) {55 if($pluginSlug[count($pluginSlug) - 1] == 'include' || $pluginSlug[count($pluginSlug) - 1] == 'core') { 56 56 $useIncludeFilter = false; 57 57 } else { … … 68 68 69 69 include $dir . "/$entry/$entry.php"; 70 71 70 if (class_exists("\\de\\orcas\\wiki\\extension\\$entry")) { 72 71 $extention = "\\de\\orcas\\wiki\\extension\\$entry"; … … 79 78 new $extention(); 80 79 } 81 } 80 } else if(class_exists("\\de\\orcas\\core\\$entry")) { 81 $extention = "\\de\\orcas\\core\\$entry"; 82 if (!method_exists($extention, 'instance')) { 83 new $extention(); 84 } 85 } 82 86 } 83 87 } … … 88 92 } 89 93 } 90 91 94 orcas_load_dir(__DIR__ . '/../extension'); 95 orcas_load_dir(__DIR__ . '/../core'); -
gdpr-notice-original/trunk/readme.txt
r1899377 r1903900 111 111 == Changelog == 112 112 113 = 1.3.2 = 114 * Fixed a problem that crashed the system after upgrade to pro 115 113 116 = 1.3.1 = 114 117 * Fixed problem with some ge_option checks
Note: See TracChangeset
for help on using the changeset viewer.