Contextual Related Posts - Version 1.4.2

Version Description

  • Fixed: Using doublequotes in the title would mess up the screen
  • Fixed: Errors when the mySQL index was being regenerated
Download this release

Release Info

Developer Ajay
Plugin Icon 128x128 Contextual Related Posts
Version 1.4.2
Comparing to
See all releases

Code changes from version 1.4.1 to 1.4.2

admin.inc.php CHANGED
@@ -25,7 +25,7 @@ function crp_options() {
25
 
26
  if($_POST['crp_save']){
27
  $crp_settings[title] = ($_POST['title']);
28
- $crp_settings[limit] = ($_POST['limit']);
29
  $crp_settings[exclude_cat_slugs] = ($_POST['exclude_cat_slugs']);
30
  $crp_settings[add_to_content] = (($_POST['add_to_content']) ? true : false);
31
  $crp_settings[add_to_page] = (($_POST['add_to_page']) ? true : false);
@@ -102,13 +102,13 @@ function crp_options() {
102
  <p>
103
  <label>
104
  <?php _e('Number of related posts to display: ',CRP_LOCAL_NAME); ?>
105
- <input type="textbox" name="limit" id="limit" value="<?php echo stripslashes($crp_settings[limit]); ?>">
106
  </label>
107
  </p>
108
  <p>
109
  <label>
110
  <?php _e('Title of related posts: ',CRP_LOCAL_NAME); ?>
111
- <input type="textbox" name="title" id="title" value="<?php echo stripslashes($crp_settings[title]); ?>">
112
  </label>
113
  </p>
114
  <p><?php _e('Exclude Categories: ',CRP_LOCAL_NAME); ?></p>
@@ -124,7 +124,7 @@ function crp_options() {
124
  </div>
125
  </td></tr>
126
  </table>
127
- <textarea class="wickEnabled:MYCUSTOMFLOATER" cols="50" rows="3" wrap="virtual" name="exclude_cat_slugs"><?php echo stripslashes($crp_settings[exclude_cat_slugs]); ?></textarea>
128
  </div>
129
  <p><?php _e('When there are no posts, what should be shown?',CRP_LOCAL_NAME); ?><br />
130
  <label>
@@ -198,7 +198,6 @@ function crp_adminmenu() {
198
  add_action( 'admin_head-'. $plugin_page, 'crp_adminhead' );
199
  }
200
 
201
- ald_crp_activate();
202
  }
203
  add_action('admin_menu', 'crp_adminmenu');
204
 
25
 
26
  if($_POST['crp_save']){
27
  $crp_settings[title] = ($_POST['title']);
28
+ $crp_settings[limit] = ((is_int($_POST['limit'])) ? ($_POST['limit']) : 5);
29
  $crp_settings[exclude_cat_slugs] = ($_POST['exclude_cat_slugs']);
30
  $crp_settings[add_to_content] = (($_POST['add_to_content']) ? true : false);
31
  $crp_settings[add_to_page] = (($_POST['add_to_page']) ? true : false);
102
  <p>
103
  <label>
104
  <?php _e('Number of related posts to display: ',CRP_LOCAL_NAME); ?>
105
+ <input type="textbox" name="limit" id="limit" value="<?php echo attribute_escape(stripslashes($crp_settings[limit])); ?>">
106
  </label>
107
  </p>
108
  <p>
109
  <label>
110
  <?php _e('Title of related posts: ',CRP_LOCAL_NAME); ?>
111
+ <input type="textbox" name="title" id="title" value="<?php echo attribute_escape(stripslashes($crp_settings[title])); ?>">
112
  </label>
113
  </p>
114
  <p><?php _e('Exclude Categories: ',CRP_LOCAL_NAME); ?></p>
124
  </div>
125
  </td></tr>
126
  </table>
127
+ <textarea class="wickEnabled:MYCUSTOMFLOATER" cols="50" rows="3" wrap="virtual" name="exclude_cat_slugs"><?php echo (stripslashes($crp_settings[exclude_cat_slugs])); ?></textarea>
128
  </div>
129
  <p><?php _e('When there are no posts, what should be shown?',CRP_LOCAL_NAME); ?><br />
130
  <label>
198
  add_action( 'admin_head-'. $plugin_page, 'crp_adminhead' );
199
  }
200
 
 
201
  }
202
  add_action('admin_menu', 'crp_adminmenu');
203
 
contextual-related-posts.php CHANGED
@@ -1,7 +1,7 @@
1
  <?php
2
  /*
3
  Plugin Name: Contextual Related Posts
4
- Version: 1.4.1
5
  Plugin URI: http://ajaydsouza.com/wordpress/plugins/contextual-related-posts/
6
  Description: Show user defined number of contextually related posts. Based on the plugin by <a href="http://weblogtoolscollection.com">Mark Ghosh</a>. <a href="options-general.php?page=crp_options">Configure...</a>
7
  Author: Ajay D'Souza
@@ -31,7 +31,7 @@ function ald_crp() {
31
  global $wpdb, $post, $single;
32
 
33
  $crp_settings = crp_read_options();
34
- $limit = $crp_settings['limit'];
35
  $exclude_categories = explode(',',$crp_settings['exclude_categories']);
36
 
37
  // Make sure the post is not from the future
@@ -66,7 +66,7 @@ function ald_crp() {
66
  $output = '<div id="crp_related">';
67
 
68
  if($searches){
69
- $output .= $crp_settings['title'];
70
  $output .= '<ul>';
71
  foreach($searches as $search) {
72
  $categorys = get_the_category($search->ID); //Fetch categories of the plugin
@@ -144,8 +144,6 @@ function crp_read_options()
144
  {
145
  $crp_settings_changed = false;
146
 
147
- //ald_crp_activate();
148
-
149
  $defaults = crp_default_options();
150
 
151
  $crp_settings = array_map('stripslashes',(array)get_option('ald_crp_settings'));
1
  <?php
2
  /*
3
  Plugin Name: Contextual Related Posts
4
+ Version: 1.4.2
5
  Plugin URI: http://ajaydsouza.com/wordpress/plugins/contextual-related-posts/
6
  Description: Show user defined number of contextually related posts. Based on the plugin by <a href="http://weblogtoolscollection.com">Mark Ghosh</a>. <a href="options-general.php?page=crp_options">Configure...</a>
7
  Author: Ajay D'Souza
31
  global $wpdb, $post, $single;
32
 
33
  $crp_settings = crp_read_options();
34
+ $limit = (stripslashes($crp_settings['limit']));
35
  $exclude_categories = explode(',',$crp_settings['exclude_categories']);
36
 
37
  // Make sure the post is not from the future
66
  $output = '<div id="crp_related">';
67
 
68
  if($searches){
69
+ $output .= (stripslashes($crp_settings[title]));
70
  $output .= '<ul>';
71
  foreach($searches as $search) {
72
  $categorys = get_the_category($search->ID); //Fetch categories of the plugin
144
  {
145
  $crp_settings_changed = false;
146
 
 
 
147
  $defaults = crp_default_options();
148
 
149
  $crp_settings = array_map('stripslashes',(array)get_option('ald_crp_settings'));
languages/crp-da_DK.mo CHANGED
Binary file
languages/crp-da_DK.po CHANGED
@@ -2,9 +2,9 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Contextual Related Posts 1.4.1\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2009-08-06 09:50+0100\n"
6
  "PO-Revision-Date: \n"
7
- "Last-Translator: Team Blogos <wordpress@blogos.dk>\n"
8
  "Language-Team: Team Blogos <wordpress@blogos.dk>\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
@@ -14,119 +14,119 @@ msgstr ""
14
  "X-Poedit-Country: DENMARK\n"
15
  "X-Poedit-SourceCharset: utf-8\n"
16
  "X-Poedit-KeywordsList: __;_c;_e;__ngettext:1,2;__ngettext_noop:1,2;_n:1,2;_nc:1,2;_n_noop:1,2\n"
17
- "X-Poedit-Basepath: d:\\wordpress\\plugins\\contextual-related-posts\n"
18
- "X-Poedit-SearchPath-0: d:\\wordpress\\plugins\\contextual-related-posts\n"
19
 
20
- #: d:\wordpress\plugins\contextual-related-posts/admin.inc.php:49
21
  msgid "Options saved successfully."
22
  msgstr "Indstillingerne blev gemt."
23
 
24
- #: d:\wordpress\plugins\contextual-related-posts/admin.inc.php:58
25
  msgid "Options set to Default."
26
  msgstr "Indstillingerne sat til standardværdier."
27
 
28
- #: d:\wordpress\plugins\contextual-related-posts/admin.inc.php:73
29
  msgid "Index recreated"
30
  msgstr "Indeks blev gendannet"
31
 
32
- #: d:\wordpress\plugins\contextual-related-posts/admin.inc.php:84
33
  msgid "Support the Development"
34
  msgstr "Støt udviklingen"
35
 
36
- #: d:\wordpress\plugins\contextual-related-posts/admin.inc.php:88
37
  msgid "If you find "
38
  msgstr "Hvis du finder "
39
 
40
- #: d:\wordpress\plugins\contextual-related-posts/admin.inc.php:90
41
  msgid "useful, please do"
42
  msgstr "brugbar, så venligst"
43
 
44
- #: d:\wordpress\plugins\contextual-related-posts/admin.inc.php:91
45
  msgid "drop in your contribution"
46
  msgstr "giv et bidrag"
47
 
48
- #: d:\wordpress\plugins\contextual-related-posts/admin.inc.php:92
49
  msgid "Some reasons why you should."
50
  msgstr "Nogle grunde til, du skulle gøre det."
51
 
52
- #: d:\wordpress\plugins\contextual-related-posts/admin.inc.php:99
53
  msgid "Options:"
54
  msgstr "Indstillinger:"
55
 
56
- #: d:\wordpress\plugins\contextual-related-posts/admin.inc.php:104
57
  msgid "Number of related posts to display: "
58
  msgstr "Antal Lignende indlæg, der skal vises: "
59
 
60
- #: d:\wordpress\plugins\contextual-related-posts/admin.inc.php:110
61
  msgid "Title of related posts: "
62
  msgstr "Titel på Lignende indlæg: "
63
 
64
- #: d:\wordpress\plugins\contextual-related-posts/admin.inc.php:114
65
  msgid "Exclude Categories: "
66
  msgstr "Udelad kategorier: "
67
 
68
- #: d:\wordpress\plugins\contextual-related-posts/admin.inc.php:129
69
  msgid "When there are no posts, what should be shown?"
70
  msgstr "Hvad skal der vises, hvis der ingen indlæg er?"
71
 
72
- #: d:\wordpress\plugins\contextual-related-posts/admin.inc.php:132
73
  msgid "Blank Output"
74
  msgstr "Intet"
75
 
76
- #: d:\wordpress\plugins\contextual-related-posts/admin.inc.php:136
77
  msgid "Display \"No Related Posts\""
78
  msgstr "Vis \"Ingen lignende indlæg\""
79
 
80
- #: d:\wordpress\plugins\contextual-related-posts/admin.inc.php:142
81
  msgid "Add related posts to the post content on single posts. <br />If you choose to disable this, please add <code>&lt;?php if(function_exists('echo_ald_crp')) echo_ald_crp(); ?&gt;</code> to your template file where you want it displayed"
82
  msgstr "Tilføj Lignende indlæg til indlæggenes indhold i enkelt-indlæg. <br />Hvis du vælger at deaktivere dette, skal du tilføje <code>&lt;?php if(function_exists('echo_ald_crp')) echo_ald_crp(); ?&gt;</code> til din skabelonfil, hvor du ønsker de lignende indlæg vist"
83
 
84
- #: d:\wordpress\plugins\contextual-related-posts/admin.inc.php:148
85
  msgid "Add related posts to pages. <br />If you choose to disable this, please add <code>&lt;?php if(function_exists('echo_ald_crp')) echo_ald_crp(); ?&gt;</code> to your template file where you want it displayed"
86
  msgstr "Tilføj Lignende indlæg til statiske sider. <br />Hvis du vælger at deaktivere dette, skal du tilføje <code>&lt;?php if(function_exists('echo_ald_crp')) echo_ald_crp(); ?&gt;</code> til din skabelonfil, hvor du ønsker de lignende indlæg vist"
87
 
88
- #: d:\wordpress\plugins\contextual-related-posts/admin.inc.php:154
89
  msgid "Add related posts to feed"
90
  msgstr "Tilføj Lignende indlæg til feeds"
91
 
92
- #: d:\wordpress\plugins\contextual-related-posts/admin.inc.php:160
93
  msgid "Find related posts based on content as well as title. If unchecked, only posts titles are used. (I recommend using a caching plugin if you enable this)"
94
  msgstr "Find Lignende indlæg ud fra såvel indhold som titel. Hvis umarkeret, bruges kun indlæggenes titler (jeg anbefaler et cache-plugin, hvis du aktiverer dette)"
95
 
96
- #: d:\wordpress\plugins\contextual-related-posts/admin.inc.php:166
97
  msgid "Exclude Pages in Related Posts"
98
  msgstr "Udelad sider i Lignende indlæg"
99
 
100
- #: d:\wordpress\plugins\contextual-related-posts/admin.inc.php:171
101
  msgid "Do you want to set options to Default?"
102
  msgstr "Ønsker du at sætte indstillingerne til standardværdierne?"
103
 
104
- #: d:\wordpress\plugins\contextual-related-posts/admin.inc.php:172
105
  msgid "Are you sure you want to recreate the index?"
106
  msgstr "Er du sikker på, du ønsker at gendanne indekset?"
107
 
108
- #: d:\wordpress\plugins\contextual-related-posts/admin.inc.php:197
109
  msgid "Related Posts"
110
  msgstr "Lignende indlæg"
111
 
112
- #: d:\wordpress\plugins\contextual-related-posts/contextual-related-posts.php:89
113
- #: d:\wordpress\plugins\contextual-related-posts/contextual-related-posts.php:93
114
  msgid "No related posts found"
115
  msgstr "Ingen lignende indlæg fundet"
116
 
117
- #: d:\wordpress\plugins\contextual-related-posts/contextual-related-posts.php:125
118
  msgid "<h3>Related Posts:</h3>"
119
  msgstr "<h3>Lignende indlæg:</h3>"
120
 
121
- #: d:\wordpress\plugins\contextual-related-posts/contextual-related-posts.php:192
122
  msgid "Settings"
123
  msgstr "Opsætning"
124
 
125
- #: d:\wordpress\plugins\contextual-related-posts/contextual-related-posts.php:193
126
  msgid "Support"
127
  msgstr "Support"
128
 
129
- #: d:\wordpress\plugins\contextual-related-posts/contextual-related-posts.php:194
130
  msgid "Donate"
131
  msgstr "Donation"
132
 
2
  msgstr ""
3
  "Project-Id-Version: Contextual Related Posts 1.4.1\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2009-08-08 11:39+0530\n"
6
  "PO-Revision-Date: \n"
7
+ "Last-Translator: Ajay D'Souza <me@ajaydsouza.com>\n"
8
  "Language-Team: Team Blogos <wordpress@blogos.dk>\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
14
  "X-Poedit-Country: DENMARK\n"
15
  "X-Poedit-SourceCharset: utf-8\n"
16
  "X-Poedit-KeywordsList: __;_c;_e;__ngettext:1,2;__ngettext_noop:1,2;_n:1,2;_nc:1,2;_n_noop:1,2\n"
17
+ "X-Poedit-Basepath: ../\n"
18
+ "X-Poedit-SearchPath-0: .\n"
19
 
20
+ #: admin.inc.php:49
21
  msgid "Options saved successfully."
22
  msgstr "Indstillingerne blev gemt."
23
 
24
+ #: admin.inc.php:58
25
  msgid "Options set to Default."
26
  msgstr "Indstillingerne sat til standardværdier."
27
 
28
+ #: admin.inc.php:73
29
  msgid "Index recreated"
30
  msgstr "Indeks blev gendannet"
31
 
32
+ #: admin.inc.php:84
33
  msgid "Support the Development"
34
  msgstr "Støt udviklingen"
35
 
36
+ #: admin.inc.php:88
37
  msgid "If you find "
38
  msgstr "Hvis du finder "
39
 
40
+ #: admin.inc.php:90
41
  msgid "useful, please do"
42
  msgstr "brugbar, så venligst"
43
 
44
+ #: admin.inc.php:91
45
  msgid "drop in your contribution"
46
  msgstr "giv et bidrag"
47
 
48
+ #: admin.inc.php:92
49
  msgid "Some reasons why you should."
50
  msgstr "Nogle grunde til, du skulle gøre det."
51
 
52
+ #: admin.inc.php:99
53
  msgid "Options:"
54
  msgstr "Indstillinger:"
55
 
56
+ #: admin.inc.php:104
57
  msgid "Number of related posts to display: "
58
  msgstr "Antal Lignende indlæg, der skal vises: "
59
 
60
+ #: admin.inc.php:110
61
  msgid "Title of related posts: "
62
  msgstr "Titel på Lignende indlæg: "
63
 
64
+ #: admin.inc.php:114
65
  msgid "Exclude Categories: "
66
  msgstr "Udelad kategorier: "
67
 
68
+ #: admin.inc.php:129
69
  msgid "When there are no posts, what should be shown?"
70
  msgstr "Hvad skal der vises, hvis der ingen indlæg er?"
71
 
72
+ #: admin.inc.php:132
73
  msgid "Blank Output"
74
  msgstr "Intet"
75
 
76
+ #: admin.inc.php:136
77
  msgid "Display \"No Related Posts\""
78
  msgstr "Vis \"Ingen lignende indlæg\""
79
 
80
+ #: admin.inc.php:142
81
  msgid "Add related posts to the post content on single posts. <br />If you choose to disable this, please add <code>&lt;?php if(function_exists('echo_ald_crp')) echo_ald_crp(); ?&gt;</code> to your template file where you want it displayed"
82
  msgstr "Tilføj Lignende indlæg til indlæggenes indhold i enkelt-indlæg. <br />Hvis du vælger at deaktivere dette, skal du tilføje <code>&lt;?php if(function_exists('echo_ald_crp')) echo_ald_crp(); ?&gt;</code> til din skabelonfil, hvor du ønsker de lignende indlæg vist"
83
 
84
+ #: admin.inc.php:148
85
  msgid "Add related posts to pages. <br />If you choose to disable this, please add <code>&lt;?php if(function_exists('echo_ald_crp')) echo_ald_crp(); ?&gt;</code> to your template file where you want it displayed"
86
  msgstr "Tilføj Lignende indlæg til statiske sider. <br />Hvis du vælger at deaktivere dette, skal du tilføje <code>&lt;?php if(function_exists('echo_ald_crp')) echo_ald_crp(); ?&gt;</code> til din skabelonfil, hvor du ønsker de lignende indlæg vist"
87
 
88
+ #: admin.inc.php:154
89
  msgid "Add related posts to feed"
90
  msgstr "Tilføj Lignende indlæg til feeds"
91
 
92
+ #: admin.inc.php:160
93
  msgid "Find related posts based on content as well as title. If unchecked, only posts titles are used. (I recommend using a caching plugin if you enable this)"
94
  msgstr "Find Lignende indlæg ud fra såvel indhold som titel. Hvis umarkeret, bruges kun indlæggenes titler (jeg anbefaler et cache-plugin, hvis du aktiverer dette)"
95
 
96
+ #: admin.inc.php:166
97
  msgid "Exclude Pages in Related Posts"
98
  msgstr "Udelad sider i Lignende indlæg"
99
 
100
+ #: admin.inc.php:171
101
  msgid "Do you want to set options to Default?"
102
  msgstr "Ønsker du at sætte indstillingerne til standardværdierne?"
103
 
104
+ #: admin.inc.php:172
105
  msgid "Are you sure you want to recreate the index?"
106
  msgstr "Er du sikker på, du ønsker at gendanne indekset?"
107
 
108
+ #: admin.inc.php:197
109
  msgid "Related Posts"
110
  msgstr "Lignende indlæg"
111
 
112
+ #: contextual-related-posts.php:89
113
+ #: contextual-related-posts.php:93
114
  msgid "No related posts found"
115
  msgstr "Ingen lignende indlæg fundet"
116
 
117
+ #: contextual-related-posts.php:125
118
  msgid "<h3>Related Posts:</h3>"
119
  msgstr "<h3>Lignende indlæg:</h3>"
120
 
121
+ #: contextual-related-posts.php:190
122
  msgid "Settings"
123
  msgstr "Opsætning"
124
 
125
+ #: contextual-related-posts.php:191
126
  msgid "Support"
127
  msgstr "Support"
128
 
129
+ #: contextual-related-posts.php:192
130
  msgid "Donate"
131
  msgstr "Donation"
132
 
languages/crp-en_US.mo CHANGED
Binary file
languages/crp-en_US.po CHANGED
@@ -2,7 +2,7 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Contextual Related Posts\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2009-08-05 22:53+0530\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: Ajay D'Souza <me@ajaydsouza.com>\n"
8
  "Language-Team: <me@ajaydsouza.com>\n"
@@ -115,15 +115,15 @@ msgstr ""
115
  msgid "<h3>Related Posts:</h3>"
116
  msgstr ""
117
 
118
- #: contextual-related-posts.php:192
119
  msgid "Settings"
120
  msgstr ""
121
 
122
- #: contextual-related-posts.php:193
123
  msgid "Support"
124
  msgstr ""
125
 
126
- #: contextual-related-posts.php:194
127
  msgid "Donate"
128
  msgstr ""
129
 
2
  msgstr ""
3
  "Project-Id-Version: Contextual Related Posts\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2009-08-08 11:39+0530\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: Ajay D'Souza <me@ajaydsouza.com>\n"
8
  "Language-Team: <me@ajaydsouza.com>\n"
115
  msgid "<h3>Related Posts:</h3>"
116
  msgstr ""
117
 
118
+ #: contextual-related-posts.php:190
119
  msgid "Settings"
120
  msgstr ""
121
 
122
+ #: contextual-related-posts.php:191
123
  msgid "Support"
124
  msgstr ""
125
 
126
+ #: contextual-related-posts.php:192
127
  msgid "Donate"
128
  msgstr ""
129
 
languages/crp-en_US.pot CHANGED
@@ -2,7 +2,7 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Contextual Related Posts\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2009-08-05 22:53+0530\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: Ajay D'Souza <me@ajaydsouza.com>\n"
8
  "Language-Team: <me@ajaydsouza.com>\n"
@@ -115,15 +115,15 @@ msgstr ""
115
  msgid "<h3>Related Posts:</h3>"
116
  msgstr ""
117
 
118
- #: contextual-related-posts.php:192
119
  msgid "Settings"
120
  msgstr ""
121
 
122
- #: contextual-related-posts.php:193
123
  msgid "Support"
124
  msgstr ""
125
 
126
- #: contextual-related-posts.php:194
127
  msgid "Donate"
128
  msgstr ""
129
 
2
  msgstr ""
3
  "Project-Id-Version: Contextual Related Posts\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2009-08-08 11:39+0530\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: Ajay D'Souza <me@ajaydsouza.com>\n"
8
  "Language-Team: <me@ajaydsouza.com>\n"
115
  msgid "<h3>Related Posts:</h3>"
116
  msgstr ""
117
 
118
+ #: contextual-related-posts.php:190
119
  msgid "Settings"
120
  msgstr ""
121
 
122
+ #: contextual-related-posts.php:191
123
  msgid "Support"
124
  msgstr ""
125
 
126
+ #: contextual-related-posts.php:192
127
  msgid "Donate"
128
  msgstr ""
129
 
languages/crp-it_IT.mo CHANGED
Binary file
languages/crp-it_IT.po CHANGED
@@ -2,7 +2,7 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Contextual Related Posts in italiano\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2009-08-05 22:53+0530\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: Ajay D'Souza <me@ajaydsouza.com>\n"
8
  "Language-Team: Gianni Diurno | http://gidibao.net/ <gidibao@gmail.com>\n"
@@ -116,15 +116,15 @@ msgstr "Non é stato trovato alcun articolo correlato"
116
  msgid "<h3>Related Posts:</h3>"
117
  msgstr "<h3>Related Posts:</h3>"
118
 
119
- #: contextual-related-posts.php:192
120
  msgid "Settings"
121
  msgstr "Impostazioni"
122
 
123
- #: contextual-related-posts.php:193
124
  msgid "Support"
125
  msgstr "Supporto"
126
 
127
- #: contextual-related-posts.php:194
128
  msgid "Donate"
129
  msgstr "Donazioni"
130
 
2
  msgstr ""
3
  "Project-Id-Version: Contextual Related Posts in italiano\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2009-08-08 11:38+0530\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: Ajay D'Souza <me@ajaydsouza.com>\n"
8
  "Language-Team: Gianni Diurno | http://gidibao.net/ <gidibao@gmail.com>\n"
116
  msgid "<h3>Related Posts:</h3>"
117
  msgstr "<h3>Related Posts:</h3>"
118
 
119
+ #: contextual-related-posts.php:190
120
  msgid "Settings"
121
  msgstr "Impostazioni"
122
 
123
+ #: contextual-related-posts.php:191
124
  msgid "Support"
125
  msgstr "Supporto"
126
 
127
+ #: contextual-related-posts.php:192
128
  msgid "Donate"
129
  msgstr "Donazioni"
130
 
readme.txt CHANGED
@@ -31,6 +31,10 @@ Now, you can choose to exclude posts from certain categories as well as exclude
31
 
32
  == Changelog ==
33
 
 
 
 
 
34
  = 1.4.1 =
35
  * Added Italian and Danish languages
36
  * Minor fix for text in the admin page
31
 
32
  == Changelog ==
33
 
34
+ = 1.4.2 =
35
+ * Fixed: Using doublequotes in the title would mess up the screen
36
+ * Fixed: Errors when the mySQL index was being regenerated
37
+
38
  = 1.4.1 =
39
  * Added Italian and Danish languages
40
  * Minor fix for text in the admin page