Changeset 1542330
- Timestamp:
- 11/28/2016 11:34:37 PM (9 years ago)
- Location:
- clearent-payments
- Files:
-
- 42 added
- 3 edited
-
tags/1.4 (added)
-
tags/1.4/clearent_clear_log.php (added)
-
tags/1.4/clearent_util.php (added)
-
tags/1.4/clearent_wp_util.php (added)
-
tags/1.4/css (added)
-
tags/1.4/css/admin.css (added)
-
tags/1.4/css/clearent.css (added)
-
tags/1.4/css/images (added)
-
tags/1.4/css/images/ui-bg_flat_0_aaaaaa_40x100.png (added)
-
tags/1.4/css/images/ui-bg_flat_75_ffffff_40x100.png (added)
-
tags/1.4/css/images/ui-bg_glass_55_fbf9ee_1x400.png (added)
-
tags/1.4/css/images/ui-bg_glass_65_ffffff_1x400.png (added)
-
tags/1.4/css/images/ui-bg_glass_75_dadada_1x400.png (added)
-
tags/1.4/css/images/ui-bg_glass_75_e6e6e6_1x400.png (added)
-
tags/1.4/css/images/ui-bg_glass_95_fef1ec_1x400.png (added)
-
tags/1.4/css/images/ui-bg_highlight-soft_75_cccccc_1x100.png (added)
-
tags/1.4/css/images/ui-icons_222222_256x240.png (added)
-
tags/1.4/css/images/ui-icons_2e83ff_256x240.png (added)
-
tags/1.4/css/images/ui-icons_454545_256x240.png (added)
-
tags/1.4/css/images/ui-icons_888888_256x240.png (added)
-
tags/1.4/css/images/ui-icons_cd0a0a_256x240.png (added)
-
tags/1.4/css/jquery-ui.min.css (added)
-
tags/1.4/css/loading.css (added)
-
tags/1.4/font (added)
-
tags/1.4/font/fontawesome-webfont.eot (added)
-
tags/1.4/font/fontawesome-webfont.ttf (added)
-
tags/1.4/font/fontawesome-webfont.woff (added)
-
tags/1.4/image (added)
-
tags/1.4/image/clearent-cards.png (added)
-
tags/1.4/image/clearent-close.png (added)
-
tags/1.4/image/clearent-lock.png (added)
-
tags/1.4/image/clearent-warning.png (added)
-
tags/1.4/image/clearent.png (added)
-
tags/1.4/js (added)
-
tags/1.4/js/admin.js (added)
-
tags/1.4/js/clearent.js (added)
-
tags/1.4/js/loading.js (added)
-
tags/1.4/log (added)
-
tags/1.4/log/readme.txt (added)
-
tags/1.4/main.php (added)
-
tags/1.4/readme.txt (added)
-
tags/1.4/uninstall.php (added)
-
trunk/clearent_util.php (modified) (1 diff)
-
trunk/main.php (modified) (2 diffs)
-
trunk/readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
clearent-payments/trunk/clearent_util.php
r1542264 r1542330 142 142 143 143 public function logMessage($msg, $path = "") { 144 if ($path = "") {144 if ($path == "") { 145 145 $path = plugin_dir_path(__FILE__); 146 146 } -
clearent-payments/trunk/main.php
r1542264 r1542330 5 5 * Plugin URI: https://wordpress.org/plugins/clearent-payments/ 6 6 * Description: Quickly and easily add secure, PCI Compliant, payment to your WordPress site. This plugin is maintained directly by Clearent, a leader in payments. 7 * Version: 1. 37 * Version: 1.4 8 8 * Author: Clearent, LLC. 9 9 * Author URI: http://clearent.github.io/wordpress/ … … 191 191 192 192 $logfile = plugin_dir_path(__FILE__) . "log/debug.log"; 193 $content = file_get_contents($logfile); 194 195 echo "[" . $logfile . "]"; 196 echo "<br>"; 197 198 $content = apply_filters('the_content', $content); 199 echo $content; 193 194 if (file_exists($logfile)) { 195 echo "[" . $logfile . "]"; 196 echo "<br><br>"; 197 echo nl2br( file_get_contents($logfile) ); 198 } else { 199 echo "Debug log file does not exist. Turn on debug logging in settings tab to enable debug logs."; 200 } 200 201 201 202 ?> -
clearent-payments/trunk/readme.txt
r1542264 r1542330 3 3 Tags: clearent, payments, credit card, ecommerce, e-commerce, checkout, pay buttons, hosted pay buttons, payment gateway 4 4 Requires at least: 4.0 5 Tested up to: 4. 36 Stable tag: 1. 35 Tested up to: 4.6.1 6 Stable tag: 1.4 7 7 License: GPLv2 or later 8 8 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 80 80 * Updated production gateway URL. 81 81 * Added debug log to wordpress admin plugin settings page for wordpress admins who may not have access to plugin directory structure. 82 83 = 1.4 = 84 * Fixed issue where reading debug log could fail on large logs or when no log present.
Note: See TracChangeset
for help on using the changeset viewer.