Changeset 1467486
- Timestamp:
- 08/04/2016 08:30:56 AM (10 years ago)
- Location:
- wp-allaround
- Files:
-
- 3 deleted
- 2 edited
- 13 copied
-
tags/0.7.1 (copied) (copied from wp-allaround/trunk)
-
tags/0.7.1/LICENSE.txt (copied) (copied from wp-allaround/trunk/LICENSE.txt)
-
tags/0.7.1/README.txt (copied) (copied from wp-allaround/trunk/README.txt) (2 diffs)
-
tags/0.7.1/Unirest (copied) (copied from wp-allaround/trunk/Unirest)
-
tags/0.7.1/Unirest.php (copied) (copied from wp-allaround/trunk/Unirest.php)
-
tags/0.7.1/css (copied) (copied from wp-allaround/trunk/css)
-
tags/0.7.1/css/wp-allaround.css (copied) (copied from wp-allaround/trunk/css/wp-allaround.css)
-
tags/0.7.1/js (copied) (copied from wp-allaround/trunk/js)
-
tags/0.7.1/languages (copied) (copied from wp-allaround/trunk/languages)
-
tags/0.7.1/languages/default.mo (deleted)
-
tags/0.7.1/languages/default.po (deleted)
-
tags/0.7.1/languages/default.pot (deleted)
-
tags/0.7.1/languages/wp-allaround-it_IT.mo (copied) (copied from wp-allaround/trunk/languages/wp-allaround-it_IT.mo)
-
tags/0.7.1/languages/wp-allaround-it_IT.po (copied) (copied from wp-allaround/trunk/languages/wp-allaround-it_IT.po)
-
tags/0.7.1/wp-allaround-admin.php (copied) (copied from wp-allaround/trunk/wp-allaround-admin.php)
-
tags/0.7.1/wp-allaround.php (copied) (copied from wp-allaround/trunk/wp-allaround.php) (2 diffs)
-
trunk/README.txt (modified) (2 diffs)
-
trunk/wp-allaround.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
wp-allaround/tags/0.7.1/README.txt
r1466742 r1467486 5 5 Requires at least: 4.0.0 6 6 Tested up to: 4.6.0 7 Stable tag: 0.7. 07 Stable tag: 0.7.1 8 8 License: GPLv2 or later 9 9 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 36 36 == Changelog == 37 37 38 = 0.7.1 = 39 * Added a quick fix to detect network problems 40 38 41 = 0.7.0 = 39 42 * A lot of bug fixes: now plugin works as expected -
wp-allaround/tags/0.7.1/wp-allaround.php
r1466742 r1467486 4 4 Plugin URI: http://www.allaroundsiena.com/plugin 5 5 Description: This plugin let you to connect a Telegram Bot with your blog 6 Version: 0.7. 06 Version: 0.7.1 7 7 Author: Michele Pinassi 8 8 Author URI: http://www.zerozone.it … … 252 252 253 253 if(isset($post_result['error'])) { 254 // ERROR ! 254 255 $post_result_code = $result->code; 255 256 $post_result_message = $post_result['error']['message']; 256 257 $post_is_published = false; 257 } else { 258 } else if(isset($post_result['success'])) { 259 // DONE ! 258 260 $post_result_code = $result->code; 259 261 $post_result_message = $post_result['success']; 260 262 $post_is_published = true; 263 } else { 264 // Something wrong with network ? 265 $post_is_published = false; 261 266 } 262 267 -
wp-allaround/trunk/README.txt
r1466742 r1467486 5 5 Requires at least: 4.0.0 6 6 Tested up to: 4.6.0 7 Stable tag: 0.7. 07 Stable tag: 0.7.1 8 8 License: GPLv2 or later 9 9 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 36 36 == Changelog == 37 37 38 = 0.7.1 = 39 * Added a quick fix to detect network problems 40 38 41 = 0.7.0 = 39 42 * A lot of bug fixes: now plugin works as expected -
wp-allaround/trunk/wp-allaround.php
r1466742 r1467486 4 4 Plugin URI: http://www.allaroundsiena.com/plugin 5 5 Description: This plugin let you to connect a Telegram Bot with your blog 6 Version: 0.7. 06 Version: 0.7.1 7 7 Author: Michele Pinassi 8 8 Author URI: http://www.zerozone.it … … 252 252 253 253 if(isset($post_result['error'])) { 254 // ERROR ! 254 255 $post_result_code = $result->code; 255 256 $post_result_message = $post_result['error']['message']; 256 257 $post_is_published = false; 257 } else { 258 } else if(isset($post_result['success'])) { 259 // DONE ! 258 260 $post_result_code = $result->code; 259 261 $post_result_message = $post_result['success']; 260 262 $post_is_published = true; 263 } else { 264 // Something wrong with network ? 265 $post_is_published = false; 261 266 } 262 267
Note: See TracChangeset
for help on using the changeset viewer.