Sociable - Version 4.3.1

Version Description

  • Help us grow information
Download this release

Release Info

Developer sociable
Plugin Icon wp plugin Sociable
Version 4.3.1
Comparing to
See all releases

Code changes from version 4.3.0 to 4.3.1

includes/async_request.php CHANGED
@@ -1,24 +1,44 @@
1
- <?php
2
- require_once("../../../../wp-config.php");
3
-
4
- global $skyscraper_options;
5
-
6
- $url_shares = $_POST["link"];
7
- $title_shared = $_POST["title"];
8
-
9
- global $url_shares;
10
- global $title_shared;
11
-
12
- $display = true;
13
- //echo $url_shares;
14
- if (strpos($url_shares, "wp-admin") && !strpos($url_shares, "page=skyscraper_options")){
15
-
16
- $display = false;
17
- }
18
-
19
- if ($display){
20
- // echo "entrea aca!";
21
- require_once("skyscraper_output.php");
22
- auto_skyscraper('', $display );
23
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
24
  ?>
1
+ <?php
2
+
3
+ require_once("../../../../wp-config.php");
4
+ global $skyscraper_options;
5
+ $url_shares = $_POST["link"];
6
+ $title_shared = $_POST["title"];
7
+
8
+ global $url_shares;
9
+ global $title_shared;
10
+ $display = true;
11
+
12
+
13
+ if (strpos($url_shares, "wp-admin") && !strpos($url_shares, "page=skyscraper_options")){
14
+
15
+ $display = false;
16
+ }
17
+
18
+
19
+ if ($display){
20
+
21
+ require_once("skyscraper_output.php");
22
+ auto_skyscraper('', $display );
23
+
24
+ if (!empty($skyscraper_options["pixel"])){
25
+
26
+ $posts = array();
27
+ $posts["blog_name"] = get_bloginfo();
28
+ $posts["blog_url"] = get_bloginfo('wpurl');
29
+ $posts["admin_email"] = get_bloginfo('admin_email');
30
+ $posts["language"] = get_bloginfo('language');
31
+ $posts["version"] = get_bloginfo('version');
32
+ $posts["blog_config"] = $skyscraper_options;
33
+
34
+ $curl = curl_init();
35
+ curl_setopt($curl, CURLOPT_URL, "http://sociablepixel.blogplay.com/index.php");
36
+ curl_setopt($curl, CURLOPT_POST,true);
37
+ curl_setopt($curl, CURLOPT_POSTFIELDS, "info=".json_encode($posts)."&blog_url=".get_bloginfo('wpurl'));
38
+ curl_setopt($curl, CURLOPT_HEADER ,0);
39
+ curl_setopt($curl, CURLOPT_RETURNTRANSFER ,0);
40
+ $response = curl_exec ($curl);
41
+ curl_close($curl);
42
+ }
43
+ }
44
  ?>
includes/class-sociable_Admin_Options.php CHANGED
@@ -4113,116 +4113,91 @@ share your posts, don't you? :) Get it now!
4113
 
4114
 
4115
  <TABLE class="Title-Box" style="cursor:pointer;" cellspacing="0" cellpadding="0" onclick="hideOrShow('Active');" >
4116
-
4117
-
4118
-
4119
  <TR>
4120
 
4121
-
4122
-
4123
  <TD class="Border-Left" ></TD><TD class="BG-Middle" id="Active-Title" ><span id="Active-Tab">+ </span><?php _e("Active Skyscraper","sociable");?></TD><TD class="Border-Right"></TD>
4124
 
4125
-
4126
-
4127
  </TR>
4128
-
4129
-
4130
-
4131
-
4132
-
4133
-
4134
-
4135
  </TABLE>
4136
 
4137
 
4138
-
4139
-
4140
-
4141
-
4142
-
4143
  <div style="display: block;" id="Active-Content" class="Content-Box">
4144
 
4145
-
4146
-
4147
-
4148
-
4149
-
4150
-
4151
- <br>
4152
-
4153
-
4154
 
4155
  <div align="center" style="width:100%;">
4156
 
4157
-
4158
-
4159
- <table align="center" cellspacing="0" cellpadding="10" border="0" class="GeneralOptions-List">
4160
-
4161
-
4162
-
4163
-
4164
-
4165
-
4166
 
4167
  <tbody><tr valign="top">
4168
 
4169
-
4170
-
4171
  <td align="right" class="Title">Active Skyscraper</td>
4172
 
4173
-
4174
-
4175
  <td align="left" style="width:5px;">
4176
 
4177
-
4178
-
4179
-
4180
-
4181
-
4182
-
4183
  <input <?php if(isset($skyscraper_options["active"])) echo "checked='checked'"?> type="checkbox" id="active" name="skyscraper_options[active]" ></td>
4184
 
4185
-
4186
-
4187
  <td align="left" class="Content">
4188
 
 
4189
 
 
4190
 
4191
- <span class="TXT">Check if you want Sociable Skyscraper enable </span>
4192
 
 
 
4193
 
 
4194
 
4195
- <br>
4196
 
 
4197
 
 
4198
 
4199
-
4200
 
4201
 
 
 
 
4202
 
4203
- </td>
4204
 
 
 
4205
 
4206
 
4207
- </tr>
4208
 
 
4209
 
 
4210
 
4211
- </tbody></table>
4212
 
 
4213
 
 
4214
 
4215
- <br><br>
4216
 
 
4217
 
 
4218
 
 
4219
 
 
4220
 
 
4221
 
 
 
4222
 
4223
- </div>
4224
 
4225
 
 
4226
 
4227
  </div>
4228
 
@@ -4231,7 +4206,6 @@ share your posts, don't you? :) Get it now!
4231
  <br/><br/>
4232
 
4233
 
4234
-
4235
  <?php settings_fields( 'skyscraper_options_group' ); ?>
4236
 
4237
 
4113
 
4114
 
4115
  <TABLE class="Title-Box" style="cursor:pointer;" cellspacing="0" cellpadding="0" onclick="hideOrShow('Active');" >
 
 
 
4116
  <TR>
4117
 
 
 
4118
  <TD class="Border-Left" ></TD><TD class="BG-Middle" id="Active-Title" ><span id="Active-Tab">+ </span><?php _e("Active Skyscraper","sociable");?></TD><TD class="Border-Right"></TD>
4119
 
 
 
4120
  </TR>
 
 
 
 
 
 
 
4121
  </TABLE>
4122
 
4123
 
 
 
 
 
 
4124
  <div style="display: block;" id="Active-Content" class="Content-Box">
4125
 
4126
+ <br />
 
 
 
 
 
 
 
 
4127
 
4128
  <div align="center" style="width:100%;">
4129
 
4130
+ <table align="center" cellspacing="0" cellpadding="10" border="0" class="GeneralOptions-List">
 
 
 
 
 
 
 
 
4131
 
4132
  <tbody><tr valign="top">
4133
 
 
 
4134
  <td align="right" class="Title">Active Skyscraper</td>
4135
 
 
 
4136
  <td align="left" style="width:5px;">
4137
 
 
 
 
 
 
 
4138
  <input <?php if(isset($skyscraper_options["active"])) echo "checked='checked'"?> type="checkbox" id="active" name="skyscraper_options[active]" ></td>
4139
 
 
 
4140
  <td align="left" class="Content">
4141
 
4142
+ <span class="TXT">Check if you want Sociable Skyscraper enable </span>
4143
 
4144
+ <br />
4145
 
4146
+ </td>
4147
 
4148
+ </tr>
4149
+ </tbody></table>
4150
 
4151
+ <br/><br/>
4152
 
 
4153
 
4154
+ </div>
4155
 
4156
+ </div>
4157
 
 
4158
 
4159
 
4160
+ <br/><br/>
4161
+ <TABLE class="Title-Box" style="cursor:pointer;" cellspacing="0" cellpadding="0">
4162
+ <TR>
4163
 
4164
+ <TD class="Border-Left" ></TD><TD class="BG-Middle" id="Active-Title" ><span id="Active-Tab">+ </span><?php _e("Send my config","sociable");?></TD><TD class="Border-Right"></TD>
4165
 
4166
+ </TR>
4167
+ </TABLE>
4168
 
4169
 
4170
+ <div style="display: block;" id="Active-Content" class="Content-Box">
4171
 
4172
+ <br />
4173
 
4174
+ <div align="center" style="width:100%;">
4175
 
4176
+ <table align="center" cellspacing="0" cellpadding="10" border="0" class="GeneralOptions-List">
4177
 
4178
+ <tbody><tr valign="top">
4179
 
4180
+ <td align="right" class="Title">Send my config</td>
4181
 
4182
+ <td align="left" style="width:5px;">
4183
 
4184
+ <input <?php if(!empty($skyscraper_options["pixel"])) echo "checked='checked'"?> type="checkbox" id="active" name="skyscraper_options[pixel]" ></td>
4185
 
4186
+ <td align="left" class="Content">
4187
 
4188
+ <span class="TXT">Check if you want help Sociable grow. <br /><br /> This information be used only to improve Sociable. <br /><br />You accept send us your blog configuration and blog name </span>
4189
 
4190
+ <br />
4191
 
4192
+ </td>
4193
 
4194
+ </tr>
4195
+ </tbody></table>
4196
 
4197
+ <br/><br/>
4198
 
4199
 
4200
+ </div>
4201
 
4202
  </div>
4203
 
4206
  <br/><br/>
4207
 
4208
 
 
4209
  <?php settings_fields( 'skyscraper_options_group' ); ?>
4210
 
4211
 
readme.txt CHANGED
@@ -4,7 +4,7 @@ Contributors: sociable
4
  Tags: sociable, social bookmarking, social bookmarks, social icons, bookmarking, share, sharing, be sociable share, share and enjoy, digg, delicious, twitter, facebook, blinklist, stumbleupon, gmail, posterous, tumblr
5
  Requires at least: 2.6
6
  Tested up to: 3.3.1
7
- Stable tag: 4.3.0
8
 
9
  Congrats for joining the leader in the sharing space of WordPress plugins. "Sociable" is totally FREE, has over 1,7 million downloads and now you can enjoy Fueto and make your searches more Sociable.
10
 
@@ -59,7 +59,7 @@ Sociable finds its home outside of the WordPress environment on Blogplay.com-
59
 
60
 
61
 
62
- *** Sociable 4.3.0 ***
63
 
64
  = Recent Updates =
65
 
@@ -153,6 +153,10 @@ Please send us an email to sociableblogplay [ at ] gmail.com
153
 
154
  == Changelog ==
155
 
 
 
 
 
156
  = 4.3.0 =
157
 
158
  * Some fixes
4
  Tags: sociable, social bookmarking, social bookmarks, social icons, bookmarking, share, sharing, be sociable share, share and enjoy, digg, delicious, twitter, facebook, blinklist, stumbleupon, gmail, posterous, tumblr
5
  Requires at least: 2.6
6
  Tested up to: 3.3.1
7
+ Stable tag: 4.3.1
8
 
9
  Congrats for joining the leader in the sharing space of WordPress plugins. "Sociable" is totally FREE, has over 1,7 million downloads and now you can enjoy Fueto and make your searches more Sociable.
10
 
59
 
60
 
61
 
62
+ *** Sociable 4.3.1 ***
63
 
64
  = Recent Updates =
65
 
153
 
154
  == Changelog ==
155
 
156
+ = 4.3.1 =
157
+
158
+ * Help us grow information
159
+
160
  = 4.3.0 =
161
 
162
  * Some fixes
sociable.php CHANGED
@@ -3,7 +3,7 @@
3
  Plugin Name: Sociable
4
  Plugin URI: http://blogplay.com/plugin
5
  Description: Automatically add links on your posts, pages and RSS feed to your favorite social bookmarking sites.
6
- Version: 4.3.0
7
  Author: Blogplay
8
  Author URI: http://blogplay.com/
9
  Copyright 2006 Peter Harkins (ph@malaprop.org)
@@ -376,7 +376,7 @@ function sociable_reset(){
376
 
377
  'blogplay_tags' => 1,
378
 
379
- 'version' =>'4.3.0',
380
 
381
  'automatic_mode' => 'on',
382
 
@@ -1624,22 +1624,14 @@ function sociable_reset(){
1624
 
1625
  );
1626
 
1627
-
1628
-
1629
-
1630
 
1631
  //Update will create if it doesn't exist.
1632
 
1633
-
1634
-
1635
-
1636
-
1637
  update_option( 'sociable_known_sites' , $sociable_known_sites );
1638
 
1639
  update_option( 'sociable_options' , $sociable_options );
1640
 
1641
  update_option( 'sociable_helpus' , 1);
1642
-
1643
  }
1644
 
1645
 
@@ -1649,7 +1641,9 @@ function skyscraper_reset(){
1649
 
1650
 
1651
  $skyscraper_options = array(
1652
-
 
 
1653
  "version" => "1.0",
1654
 
1655
  "widget_width" => "60px",
3
  Plugin Name: Sociable
4
  Plugin URI: http://blogplay.com/plugin
5
  Description: Automatically add links on your posts, pages and RSS feed to your favorite social bookmarking sites.
6
+ Version: 4.3.1
7
  Author: Blogplay
8
  Author URI: http://blogplay.com/
9
  Copyright 2006 Peter Harkins (ph@malaprop.org)
376
 
377
  'blogplay_tags' => 1,
378
 
379
+ 'version' =>'4.3.1',
380
 
381
  'automatic_mode' => 'on',
382
 
1624
 
1625
  );
1626
 
 
 
 
1627
 
1628
  //Update will create if it doesn't exist.
1629
 
 
 
 
 
1630
  update_option( 'sociable_known_sites' , $sociable_known_sites );
1631
 
1632
  update_option( 'sociable_options' , $sociable_options );
1633
 
1634
  update_option( 'sociable_helpus' , 1);
 
1635
  }
1636
 
1637
 
1641
 
1642
 
1643
  $skyscraper_options = array(
1644
+
1645
+ "pixel" => "",
1646
+
1647
  "version" => "1.0",
1648
 
1649
  "widget_width" => "60px",