Our Todo List Plugin

A simple todo list plugin to share ideas/todos with blog members. All members work together to manage the todo list under “Manage” section in Wordpress administration interface.

A variant derived from AbstractDimension’s Todo List Plugin.

Screenshots

Screenshot: Manage Our Todo ListScreenshot: Our Todo List on DashboardOur Todo List Plugin - OptionsNew!

Download

Download Our Todo List version 2.0

Howto Upgrade to version 2.0

  1. Go to ‘Plugins’, deactivate Our Todo List.
  2. In your server, replace the old ourtodolist.php file (or folder) with the new one.
  3. Refresh ‘Plugins’, activate Our Todo List 2.0.
  4. (For Wordpress 2 users) Go to ‘Options’ > ‘OurTodo’ to decide who can/cannot use the plugin.

Installing

Important: If you are using Abstract Dimension’s Todo List plugin, please read FAQs before installing.

  1. Copy ourtodolist.php to your wp-content/plugins/
  2. Activate the plugin
  3. (Wordpress 1.5 users) Go to ‘Manage’ > ‘OurTodo’. Scroll to the bottom page to ‘Install’ and click the setup script.
  4. (Wordpress 2 users) Go to ‘Options’ > ‘OurTodo’ to decide who can/cannot use the plugin.

Note: For Wordpress 2 users, step 3 should be done automatically. If not, try step 3.

Translating

The plugin comes with a POT file, otd.pot since version 1.5. Please let me know if you publish a translation. So that I can link to you:

Install a Translation

Place the locale (.mo) file under the same directory with ourtodolist.php.

To be more organized, you can place both ourtodolist.php and the .mo file under a subdirectory, e.g. wp-content/plugins/ourtodolist/ .

Bug Reports/Feedbacks

Submit your feedback through comments.

Usage

As requested by BGH Quiz, APIs are added since version 1.2:

  1. To display all tasks (added in version 1.7)

    <?php ourtodolist_all(limit, show_priority, show_author); ?>
    • limit - (integer) number of items. 0 means all items. Default is 0.
    • show_priority - (boolean) show priority label. Default is false.
    • show_author - (boolean) show author’s display name. Default is false.
  2. To display todo tasks only

    <?php ourtodolist(limit, show_priority, show_author); ?>
    • limit - (integer) number of items. 0 means all items. Default is 0.
    • show_priority - (boolean) show priority label. Default is false.
    • show_author - (boolean) show author’s display name. Default is false.
  3. To display completed tasks only

    <?php ourtodolist_completed(limit, show_priority, show_author); ?>
    • limit - (integer) number of items. 0 means all items. Default is 0.
    • show_priority - (boolean) show priority label. Default is false.
    • show_author - (boolean) show author’s display name. Default is false.
  4. Exist any task?

    <?php ourtodolist_exists(is_completed); ?>
    
    /* since version 1.7 */
    <?php ourtodolist_exists(status); ?>
    • is_completed - (boolean) If true, check for completed tasks; if false, check for todo tasks. Default is false.
    • status - (constant value):
      • OTD_ALL - does any tasks exist
      • OTD_TODO - does any todo tasks exist
      • OTD_COMPLETED - does any completed tasks exist

      Default is OTD_TODO.

    • Returns true if exists, otherwise returns false.

Example Code

PHP source code:

<h4>Our Todo Tasks</h4>
<?php if ( ourtodolist_exists() ) : ?>
<ol>
     <?php ourtodolist(); ?>
</ol>
<?php endif; ?>

<?php if ( ourtodolist_exists(OTD_COMPLETED) ) : ?>
<h4>Completed Tasks</h4>
<ul>
    <?php ourtodolist_completed(5, false, true); ?>
</ul>
<?php endif; ?>

Genereated HTML:

Our Todo Tasks

  1. Cook for lunch.
  2. Late-night movie ticket.

Completed Tasks

  • Release Our Todo List plugin version 1.2. ~toydi

Example Code: Classnames & Styling

Since version 1.7, each list item will have a class name.
<li class="otd_completed">..</li> if it’s a completed task,
<li class="otd_todo">..</li> if it’s a todo task.

However, they are not styled by default. Feel free to style them in your current theme’s CSS file.

PHP source code:

<h4>Task List</h4>
<?php if ( ourtodolist_exists(OTD_ALL) ) : ?>
<ol>
    <?php ourtodolist_all(); ?>
</ol>
<?php endif; ?>

CSS sample code:

.otd_completed { text-decoration: line-through; }

Generated HTML:

Task List

  1. Release Our Todo List plugin version 1.7.
  2. Cook for lunch.
  3. Late-night movie ticket.

FAQs

  1. How does it different from Abstract Dimension’s Todo List plugin?

    Our Todo List plugin is built for information sharing within a team of people who trust each other.When a new todo is created, it is visible to all members who login into Wordpress Administration interface. Members are allowed to edit/delete any todo item.For each todo item, it only records who made the last change, not who first created the item.

  2. I’m using Abstract Dimension’s Todo List, how to migrate to this plugin?

    By default, both plugins shares the same database table name. The intend is to make migration easy:

    1. Install Our Todo List, activate it
    2. Deactivate Abstract Dimension’s Todo List
  3. Can I run both Abstract Dimension’s Todo List and Our Todo List separately in my blog?

    Yes, but you MUST change the database table name used by Our Todo List plugin, so that each plugin uses a different table to store data:

    1. Open ourtodolist.php with your favourite editor
    2. Search for the phrase: $otd_tablename = $table_prefix . 'todolist';
    3. Change the 'todolist' to another name (e.g. 'ourtodolist')
    4. Save the changes

Change Log

  • version 2.0
    • Major code clean up.
    • Fixed the plugin to run on WP 1.5.
    • Added a Role-Capability feature! (WP 2.0 and above only)
    • Updated POT file
    • Replaced is_int() with a more appropriate input validation method.
    • Fixed several bugs discovered by Baruchel (a big thank).
  • version 1.7
    • Added a new function ourtodolist_all() to display both todo and completed tasks in single list. (Kretzschmar, sorry for the delayed release!)
    • Changed the input parameter of ourtodolist_exists(). But don’t worry, it is backward-compatible, which means your existing codes will not break. If it does, please let me know.
  • version 1.6
    • Top-level codes are wrapped into a function and hooked to ‘init’ action.
      It should fix Humuhumu’s problem.
  • version 1.5
    • Fixed problems in locale support, a big thank to kretzschmar!
    • Included the plugin’s POT file.
  • version 1.4
    • Added plugin localization support, by calling load_plugin_textdomain().
    • Plugin file is allowed to load when it’s inside an arbirtary subdirectory, e.g. wp-content/plugins/sub_dir/ourtodolist.php. (thanks to kretzschmar for pointing out the problems)
  • version 1.3
    • Cleaned up all global variables by adding ‘otd_’ prefix.
  • version 1.2
    • Added 3 new functions to display todo in blog, as requested by BGH Quiz.
  • version 1.0
    • Released first version.
No tags for this post.

518 Responses to “Our Todo List Plugin”

  1. mysurface Says:

    No need to create a table to database? It is created automatically? What if the table fails to create automatically? How can I create it manually?

  2. toydi Says:

    mysurface, please go to ‘Manage’ > ‘OurTodo’. Scroll to the bottom page to ‘Install’ and click the setup script to create the database table.

  3. BGH Quiz Says:

    I would like to publish the contents of the list on the blog. Can you add that feature?

  4. Weblog Tools Collection » Blog Archive » WordPress Plugin Releases for 1/30 Says:

    [...] WordPress Todo List lets blog members share ideas and manage a todo list. (No Ratings Yet)  Loading … [...]

  5. toydi Says:

    BGH Quiz, please try the new features in version 1.2, welcome to suggest for improvements. Thanks.

  6. Watershed Studio Blog » Blog Archive » January 30th, 2007 Dailies Says:

    [...] Plugins: Bible Verse of the Day, Our Todo List & Share This 1.4 Tags: adobe photoshop, amd 64, gimp, gpl, Microsoft, mpl, nvu, open source, [...]

  7. Plugin: Community To-do List | Wordpress Tutorials And Blogging Tips Says:

    [...] To-do List Plugin is a useful plugin which allows all members to create, edit and delete entries to a community to-do list kept under the manage tab of the Wordpress Admin. Using it, members can share ideas, tasks and problems easily and swiftly- making the running and using of your site a lot easier and smoother. [...]

  8. Anatoly Says:

    Your plugin is conflicting with this plugin:
    http://www.dagondesign.com/articles/sitemap-generator-plugin-for-wordpress/
    As soon as I enable yours, plugin list stops showing plugins until I remove either yours or their plugin. I’m on WordPress 2.1.
    I wasn’t able to debug it, but may be some functions or global variables are being overrided?

  9. toydi Says:

    Thanks, Anatoly. I have read Dagondesign’s sitemap code, but there is no conflict on global variables and function names. I tried both Dagondesign Sitemap 2.71, Our Todo List 1.2 on Wordpress 2.1, everything run smooth here. Probably something else has caused the problem.

    Just to verify, are you using the latest version of Dagondesign Sitemap *2.71* as well?

    Anyway, I have cleaned up all global variables in Our Todo List 1.3. Feel free to try out. Please let me know if it works this time. Thanks.

  10. Fixmood » Blog Archive » Our Todo List 1.3 Says:

    [...] [Download] [Plugin Page] [...]

  11. Anatoly Says:

    That was quite lame from my side… PHP option 8MB limit per script was suddenly activated on server and I had “just enough scripts” for server. As soon as I was adding any single plugin, wp was crashing. Sorry for the hassle.

  12. Hacks, Information, and More » WordPress Plugin Releases for 1/30 Says:

    [...] WordPress Todo List lets blog members share ideas and manage a todo list. [...]

  13. kretzschmar Says:

    I am using wordpress 2.2 (beta). If I copy your plugin to the plugin folder everything is good. But if i leave it in the subdirectory, everytime I add a new todo I get a wordpress error that “ourtotlist.php” is not found.

  14. kretzschmar Says:

    I have seen in the plugin code that you use gettext. Why didn’t you set a textdomain? Isn’t it needed for proper translation?

  15. Writer’s Blog » Blog Archive » The Plugins I Use Says:

    [...] Our Todo List - A good portion of my online time is spent looking at my WordPress dashboard, so it’s a good place to leave myself little reminders. I’ve just recently installed this todo plugin, and it’s a handy little scratch space for me to set up a todo list. [...]

  16. toydi Says:

    kretzschmar, feel free to download the new version 1.4. I haved added fixes to both problems that you pointed out.

    Though, I’m not familiar with plugin localization. Please let me know, if the fix is correct. Thanks.

  17. BGH Quiz Says:

    Thank you for adding the fuctions!

  18. kretzschmar Says:

    Thanks, now everything works as expected. I checked your textdomain and made a german locale. I think there is a better way to parse the directory of the locale (load plugin textdomain) but with a fixed directory it works.
    Maybe you find a better way.

    I need your E-Mail to send you the changes.

  19. kretzschmar Says:

    Everybody who wants to try the german Version can download Version 1.4 with the german locale at:
    diekretzschmars.de

  20. kretzschmar Says:

    Everybody who wants to try the german Version can download Version 1.4 with the german locale at:
    href=”http://diekretzschmars.de/2007/our-todo-list-germandeutsch/

  21. Connected Minds » Se Liga! #3 - Plugin para o Wordpress Says:

    [...] Wordpress que cria lista de tarefas na área de administração do blog - Our Todo List 1.4 - Onde: Wordpress by Examples (em inglês) - Por quem: [...]

  22. kretzschmar Says:

    Please note that my theme dKret is german/dutch. I am from germany and don’t speak dutch at all.
    So at my site you dan download a german locale NOT a dutch one.

  23. kretzschmar Says:

    Sorry, I need a little help. I made a template for todo-tasks.

    I don’t want to show Todo if there is no Todo entry. How do i have to call ourtodolist_exists for this?

  24. toydi Says:

    kretzschmar,

    ourtodolist_exists() returns false if there is no entry in your Todo.

    Therefore, the code below will not display anything if there is no Todo entry.

    <?php if ( ourtodolist_exists() ) : ?>
    <h4>Todo</h4>
    <ol>
      <?php ourtodolist(); ?>
    </ol>
    <?php endif; ?>

    Hope this is what you need.

  25. kretzschmar Says:

    Sorry, I am an idi.. I did that but placed the if function AFTER the headline, therefore h3 was always visible.
    Thanks.

  26. webname » Blog Archive Says:

    [...] Our Todo List [...]

  27. limette Says:

    Thank you for your plugin, it works fine :-)
    Just one question: I’d like to limit the use of it to the users who are admins. One way would be, as I thought, to put the tab into the wp-admin/options-general.php-menu, which is a menue not visible for authors. I’ve changed

    $otd_location = get_settings(’siteurl’) . ‘/wp-admin/edit.php?page=’.
    plugin_basename(__FILE__);

    into

    $otd_location = get_settings(’siteurl’) . ‘/wp-admin/options-general.php?page=’.
    plugin_basename(__FILE__);

    but nothing happened. Is there another possibility?
    … sorry, but I’m not that good at php …

    Thank you.

  28. kretzschmar Says:

    I think the best way would be to use the role system of wordpress2. Have a look at the myGallery Plugin (1.4beta).
    If the plugin is aktivated for the first time it adds a new role to wordpress (ourtodo) for administrators. With the role manager plugin everybody is free in adding this role to every user he wishes.

    If you (wordpressbyexamples) need help in changing the plugin feel free to ask.

  29. limette Says:

    Thank you for your fast answer. I couldn’t catch it with role manager though, but it worked fine as soon as I changed the 1 to 3 in line 429 (add_submenu_page, etc. …, german version). Role manager still somehow has the hickups at my system, so this might be the reason, why it didn’t work …

  30. toydi Says:

    kretzschmar, sorry for late reply.

    I have tight schedule on my work recently. It would be really great if you could help to patch the ourtodolist with new feature you suggested. :)

    Just two things I concern, 1) some users may not need this feature by default, it’s nice if users are able to turn it on/off, 2) will it be backward compatibility to WP 1.5?

    Thanks.

  31. kretzschmar Says:

    Sorry, but for the next weeks i won’t have time to work on ourtodo.

  32. Humuhumu Says:

    When creating a todo item that includes a single quote (’), the plugin says that it has created the new todo item, but it does not.

  33. toydi Says:

    Humuhumu, just to confirm, do you turn off the ‘magic_quotes_gpc’ flag in php.ini setting?

    I didn’t escape the single quotes, as they are escaped when ‘magic_quotes_gpc’ is ‘true’ (PHP’s default). If this is the problem, I will update the code asap.

  34. toydi Says:

    Humuhumu, I have updated the code in version 1.6. Feel free to try it.

    Thanks to aizatto for pointing out the potential problem during a short chat.

  35. Humuhumu Says:

    I just updated to 1.6, and it’s working fine now. Thanks for the speedy turnaround on a fix!

  36. WPのプラグイン:Our Todo List Plugin Says:

    [...] ダウンロード:Wordpress by Examples » Our Todo List Plugin [...]

  37. list » Our Todo List Plugin Says:

    [...] Original post by toydi [...]

  38. Great Wordpress Plugins We Use » The Daily Blitz Says:

    [...] Our Todo List by Toydi Great for issuing a shared to-do list to each of your site’s staff members, freely editable by all. Now if only I could convince my staff to actually use the thing… [...]

  39. Kretzschmar Says:

    It wouuld be really great if the Plugin could support one more output option:
    I would love to have a todo list where completed todo items would be striked through. Just one list for Todo’s and completed items (the normal display of a todo list).

  40. toydi Says:

    Kretzschmar, sorry for late reply. Do you mean the output of the function ourtodolist(...)? Then it wouldn’t be too trickly, I think I can modify this function on coming weekend.

  41. Kretzschmar Says:

    Yes, just the output.

  42. Kretzschmar Says:

    Any progress with your modifications yet toydi?

  43. Kretzschmar Says:

    You are so kind toydi. You don’t have to excuse yourself.

    You are so great. You did a fantastic job with release 1.7. Super. Marve……

  44. Wordpress Module/Plugins für Mehrbenutzer-Blogs [6] » Neunzehnhundert.org :: Neue Introspektiven Says:

    [...] Our Todo List 1.7: Alle Autoren eines Blogs bekommen mit Our Todo List Zugriff auf eine kleine Liste zu erledigender Aufgaben, können neue Aufgaben hinzufügen, darüber disktutieren oder sie als erledigt markieren. Von Wordpress By Examples. [...]

  45. Kretzschmar Says:

    Still a wish: I have a lot of completed tasks so all Todos are striked through if ourtodolist_all is limited (10). I use a template for my complete list and a Widget just for my sidebar. In the Widget I limit the todo’s to 10 but would prefer if not finished todo’s would be shown first.

  46. Kretzschmar Says:

    Sorry, I just thought again and what I want to have is possible right now. Sorry, thanks again. I am happy as it is.

  47. wordpress是什么 » wordpress plugin - 更新于05/13 Says:

    [...] [插件下载 | Plugin download] [插件主页 | Plugin Page] [...]

  48. wordpress是什么 » Blog Archive » wordpress plugin - 更新于05/13 Says:

    [...] [插件下载 | Plugin download] [插件主页 | Plugin Page] [...]

  49. jsamlarose Says:

    Hi there - great plugin. Just wanted to know how to restrict the to-do list to authors and above? Thanks in advance!

  50. Todo- Liste Juni 2007 : netz-blogger.de Says:

    [...] schreiben… Übrigens: es gibt auch ein spezielles Todo-List Plugin für Wordpress: Our Todo List Plugin, ins Deutsche übersetzt von Jörn Kretzschmar. Das werde ich mir auch mal ansehen… [...]

  51. Anne Kowalski » Blog Archive » Best WordPress Plugins Says:

    [...] Our ToDo List Shows a todo list in your WordPress Dashboard. Helpful for keeping track of post ideas.Note: When I installed this I had to go to Manage>Our ToDo then click the link to run the script (under the Install heading) before it would work, despite having version 2.1. [...]

  52. Kretzschmar Says:

    I have a (silly?) question:
    I have an array $options. Where I saved some values (todo=4 and finished=3).

    I use your function:
    ourtodolist_completed($options['finished'], false, false);

    Why does it always show ALL finished items?

    The array is properly filled with values (I can echo $options[finished] and get 3).

    It is really important because I use your functions inside my Widget and I want users be able to change the number of posted Todos.

  53. toydi Says:

    Kretzschmar, I use is_int() in ourtodolist_completed() to verify the $limit variable, it will limit the results only if $limit is an integer.

    The problem may be: when you retrieve a number from a widget configuration, the number is probably a string.


    $options['finished'] = ‘3′;
    var_dump(is_int($options['finished'])); // false

    It looks like I shouldn’t use is_int(), I will try to patch it. But mean while, a simple type-casting shall solve the problem:


    $options['finished'] = ‘3′;
    ourtodolist_completed((int)$options[’finished’]);

  54. toydi Says:

    jsamlarose, ourtodolist does not support role-based capability yet. Everyone who can login into wp-admin is capable to use this plugin.

    Kretzschmar has mentioned a possible solution, I don’t have time yet to explore it. If anyone wish to help, feel free to submit a patch! :-)

  55. Kretzschmar Says:

    Leave it as it is. I fixed my problems before (sorry for not posting).

    Your check seems to be important for me. That way a user can’t pass a string. My problem was I didn’t know (till now) that php makes ANY difference between string and integer.

    Sorry but learning never ends.

  56. Avransky Says:

    Hi toydi, your plugin is great but I have a request. I have suscribers on my blog and I don’t want them to see our to do list which is for bloggers only. So this would be an important feature for ourtodolist to support role-based capability. I hope it will do in next release if you think this is relevant. Thx anyway !

  57. Lise Says:

    Hi,
    I translated Our Todo List into French.

    The translation file is here : http://liseweb.fr/BLOG/wp-contents/uploads/otd-fr_FR.zip

    The page with the plugins, that I already translated
    http://liseweb.fr/BLOG/?page_id=160

    Best regards
    Lise

  58. WP Plugins DB » Plugin Details » Our Todo List Says:

    [...] Visit [...]

  59. Todo Juli 2007 Says:

    [...] monatliche Liste darüber, was in diesem Blog alles so geschehen soll, wird ab sofort das Our Todo List Plugin für Wordpress übernehmen, welches für gut befunden und nun in die Sidebar eingebaut [...]

  60. Baruchel Says:

    Several bugs:
    a) if the plugin is in a subdirectory (for instance wp-content/plugins/ourtodolist) which is the best thing to do at activation time AND no table exists (which means that a table should be created), there is an error because the add_action concerning activation assumes the php file is not in a subdirectory. It can be fixed with the following line :
    add_action(’activate_’.dirname(plugin_basename(__FILE__)).’/ourtodolist.php’,'otd_install’);
    instead of
    add_action(’activate_ourtodolist.php’,'otd_install’);

    b) the name of the author is not right in the initial comments of the php file ;
    c) there is an issue at creation time if the french translation is installed, because of a single quote in the sentence. It seems to work well by correcting the otd_insert function with
    “VALUES ($userdata->ID, 0, $priority,\”$todotext\”)”;
    replacing the very similar line.

  61. Baruchel Says:

    Another bug : the priority is not localized in both the tasks to do and the tasks already done.

  62. Unsere Fellnasen » Neue Plugins Says:

    [...] Todoliste - Eine Liste die es erlaubt anderen zu zeigen, welche Projekte man derzeit in Bearbeitung hat oder was noch zu erledigen ist. [...]

  63. Attribute of Wolf: Bike, Photography and Family » Wordpress佈景主題:DKret2的中文包 Says:

    [...] Ourtodolist [...]

  64. toydi Says:

    Proudly announce that, Our Todo List 2.0 (with role-capability feature) is released.

  65. A wordpress plugin I'd scramble to get... « Unfolding Neurons Says:

    [...] Dimension seems to be no longer available (the site is down).  I did some digging and found “Our To-Do plugin” at the site,  “WordPress by Examples“.   It is based on the original To-Do [...]

  66. 12 WordPress Plug-ins I can’t sleep without Says:

    [...] Our Todo List is a funny name for a WordPress to do list only I use every day [...]

  67. Kretzschmar Says:

    Ich habe meine deutsche Übersetzung aktualisiert. Bitte bei Bedarf herunterladen: http://diekretzschmars.de/2007/our-todo-list-germandeutsch/

  68. Tricking out a Wordpress GTD blog with a To Do List | ChillyCool Web Digger Says:

    [...] added some neat features to the Wordpress blog I used for GTD recently. I found the To Do plugin, which sticks a nice To Do list right in your admin panel. It will not send you any reminders, and [...]

  69. kalen Says:

    i’m in love with this plugin! thanks so much :D

  70. 给博客增加一个日程 | 我爱水煮鱼 Says:

    [...] 随便介绍下,日程这个页面是通过 Our Todo List [...]

  71. Speed DARYL Says:

    Hello everyone !

    I found it boring to open a new page each time i wanted to edit a todo so i modified source code to edit a todo item directly within the table that contains the list.

    Maybe you can check my code because there is still a problem with the args in the url but i solved with a trick…

    Reply by email if you want me to send you the file !

    Thanks bye

  72. Speed DARYL Says:

    Oh yes,

    I didn’t have time to add the “add todo” under the last todo item in the table… but i think i will because i don’t see the use of this extra form under the completed task… i think a simple line containing the text, the priority in a selectbox and a submit button is all that’s necessary…

    Bye see you…

  73. kym Says:

    I could not get this to work.

    When I installed it I got a link under Manage and under Options and both were the same thing - to set up who would use it. There was nowhere to actually create the lists.

    WP 2.2.1

  74. toydi Says:

    kym, I just retest, it works on fresh installed WP 2.2.1.

    Can you see “Our Todo List” in Latest Activity box under Dashboard?
    - something wrong if it’s not there.

  75. Nuestra lista de quehaceres, en WordPress / Acua Center 09 Says:

    [...] trata de “Our Todo List” plugin, interesante creación de by example, que nos permite elaborar nuestra lista de quehaceres que posee las siguientes características que [...]

  76. Our Todo List 汉化版 | 我爱水煮鱼 Says:

    [...] Our Todo List 是一个简便的“待办事项”插件,可以用来跟团队成员一起来管理和共享任务/想法。团队所有的成员都可以通过“管理”页面来管理“待办事项”清单。 [...]

  77. WordPress Plugin: 待办事项 Our Todo List 改进版 | Forgot the Milk … 聆听窗外 Says:

    [...] Our Todo List 是一个简单易用的“待办事项”插件,我爱水煮鱼曾经介绍过它:可以用来跟 团队成员一起来管理和共享任务/想法。团队所有的成员都可以通过“管理”页面来管理“待办事项”清单。对个人来讲,也可以做为要写的、想写的文章列出,征集读者的意见。 [...]

  78. WordPress 2.3.1 简体中文版 | 我爱水煮鱼 Says:

    [...] in One SEO Pack Simple Tags Popularity Contest Our Todo List Subscribe To Comments WordPress Database Backup WP 2.3 Related Posts Google Sitemap Generator [...]

  79. WordPress 2.3.1,MYSQL,数据库,编码,字符集,utf8,wp-config | 亦简亦繁 wordpress blog Says:

    [...] in One SEO Pack Simple Tags Popularity Contest Our Todo List Subscribe To Comments WordPress Database Backup WP 2.3 Related Posts Google Sitemap Generator [...]

  80. XaoMa’CN » Blog Archive » WordPress 2.3.1 简体中文版下载 Says:

    [...] 目前已经包含以下插件及其汉化包: All in One SEO Pack Simple Tags Popularity Contest Our Todo List Subscribe To Comments WordPress Database Backup WP 2.3 Related Posts Google Sitemap Generator [...]

  81. tech.inthinking.com » Blog Archive » WordPress 2.3.1 简体中文版 Says:

    [...] in One SEO Pack Simple Tags Popularity Contest Our Todo List Subscribe To Comments WordPress Database Backup WP 2.3 Related Posts Google Sitemap Generator [...]

  82. 分享我的主题 | 我爱水煮鱼 Says:

    [...] 然后还默认支持下面的插件: WP 2.3 Related Posts Where did they go from here? clicki Our Todo List [...]

  83. Get Organized with the WordPress Todo List Plugin - Brad Williams Weblog: Web 2.0 and Beyond Says:

    [...] Have you ever come across a topic you wanted to blog about, but didn’t have time to write at that moment? So you put it off and come back to it later, right? Of course, but what happens if you forget about the original topic you wanted to post about? I’ve had this problem a few times, so decided to find a plugin to help me out. Enter the WordPress Todo List Plugin. [...]

  84. Plugins Wordpress : Cosas pendientes de hacer en el panel de administración - Fernando Gomez Says:

    [...] Our Todo List Plugin Post [...]

  85. Slouching towards Golgonooza » Blog Archive » Memi: version 6 coming soon Says:

    [...] Our To-Do List is a simple to-do list that I will experiment with. I should perhaps explain that I am not [...]

  86. James Says:

    It would be great if out to do list had categories for the todo items.

  87. ทหารเกณฑ์ » Blog Archive » Free Wordpress Plugins Says:

    [...] Our To-Do List A simple todo list to share ideas/todos with blog members. All members work as a team to manipulate the list under “Manage”. [...]

  88. ทหารเกณฑ์ » Blog Archive » Wordpress Management Says:

    [...] Our To-Do List A simple todo list to share ideas/todos with blog members. All members work as a team to manipulate the list under “Manage”. [...]

  89. brian Says:

    love the plug-in.

    1. How would I go about getting/writing a script that will create a new task from a form outside of the manage>todo page? perhaps a desktop or sidebar widget?

    2. Any plans for adding an “assign to user” feature?

  90. WordPress Weekly - Episode 2 » Jeffro2pt0.com Says:

    [...] - Our To Do List Plugin A simple todo list plugin to share ideas/todos with blog members. All members work together to [...]

  91. Admin Msg Board, agrega un sistema de mensajes en Wordpress Says:

    [...] entre el administrador principal de un blog colectivo con sus autores, y quizás combinado con Our Todo List, otro plugin para WordPress que permite generar listas de tareas y/o ideas, los blogs colectivos [...]

  92. Blog de software » Blog Archive » Admin Msg Board, agrega un sistema de mensajes en Wordpress Says:

    [...] entre el administrador principal de un blog colectivo con sus autores, y quizás combinado con Our Todo List, otro plugin para WordPress que permite generar listas de tareas y/o ideas, los blogs colectivos [...]

  93. Tecnologia » Blog Archiv » Admin Msg Board, agrega un sistema de mensajes en Wordpress Says:

    [...] entre el administrador principal de un blog colectivo con sus autores, y quizás combinado con Our Todo List, otro plugin para WordPress que permite generar listas de tareas y/o ideas, los blogs colectivos [...]

  94. Tecnologia » Blog Archiv » Admin Msg Board, sistema de mensajes privados para los autores de un blog Says:

    [...] entre el administrador principal de un blog colectivo con sus autores, y quizás combinado con Our Todo List, otro plugin para WordPress que permite generar listas de tareas y/o ideas, los blogs colectivos [...]

  95. Blog de software » Blog Archive » Admin Msg Board, sistema de mensajes privados para los autores de un blog Says:

    [...] entre el administrador principal de un blog colectivo con sus autores, y quizás combinado con Our Todo List, otro plugin para WordPress que permite generar listas de tareas y/o ideas, los blogs colectivos [...]

  96. D O X G L E » Admin Msg Board, sistema de mensajes privados para los autores de un blog Says:

    [...] entre el administrador principal de un blog colectivo con sus autores, y quizás combinado con Our Todo List, otro plugin para WordPress que permite generar listas de tareas y/o ideas, los blogs colectivos [...]

  97. Admin Msg Board, sistema de mensajes privados para los autores de un blog Says:

    [...] entre el administrador principal de un blog colectivo con sus autores, y quizás combinado con Our Todo List, otro plugin para WordPress que permite generar listas de tareas y/o ideas, los blogs colectivos [...]

  98. 开始使用WordPress & 常用WordPress插件 | 姓张的小子 - 博客 Says:

    [...] Our Todo List:在wordpress后台中为相应的角色提供todo list功能。 [...]

  99. Michael Says:

    Love your plugin and use it frequently. However, one thing is really missing: Date of “creation” of entry, date of “done” and not only who last edited it, but a list of all people involved… Thanks!

  100. manele Says:

    You are so great. You did a fantastic job with release

  101. Jeromy Says:

    Wonderful plugin guys! I’d love to see RSS feed support in coming version (so people can subscribe via RSS to new todo items). Later!

  102. wow gold Says:

    Cool, the post.

    Thanks for the information.

  103. PixelMuse Says:

    Great plugin though sadly I cannot seem to get it to work. I am running Wordpress 2.51 and when I go to add new todo nothing happens. It says it updates but the todo list remains empty.

  104. Adrain Says:

    Doesn’t seem to work with 2.5, Database table not being created.

  105. PixelMuse Says:

    @Adrain
    Thank you for the info, a shame cause it looks like an awesome plugin. :)

  106. jocuri Says:

    thank you

  107. grunet Says:

    I have the problem, that a ‘Author’ or high userlevel not can edit the todo item. Only the administrator can do this. How i can change this, so that also ‘Author’ can change the todo item text or status?

    Thanks for answer

  108. jocuri Says:

    good thankx

  109. toydi Says:

    grunet, you can choose which userlevel is allowed to use OurTodoList in ‘Options’ panel. Does it work?

  110. grunet Says:

    hi toydi, i have ‘Author’ allowed to use OTL. And he can also create a new ToDo Item, but he can not edit this via the edit button.

  111. jocuri Says:

    Keep up the good work! 10q

  112. televiziune gratis Says:

    awesome plugin thank you

  113. it came from mars § my most uninteresting life » Blog Archive » The Right Keyboard is Paramount Says:

    [...] Our Todo List - A simple todo list to share ideas/todos with blog members. All members work as a team to manipulate the list under “Manage”. A variant derived from AbstractDimension’s Todo List Plugin. [...]

  114. Maarten Says:

    Great plugin!

    I got one question, is it possible to make categories (or seperate todo-lists). A simple work-around would be to make a code to only show different priorities. Thanks for your help :)

  115. AOC GOLD Says:

    aoc gold  aoc gold  age of conan gold   aoc gold  age of conan gold  aoc gold age of conan gold

    [url=http://www.vipaocgold.com/][b]aoc gold[/b][/url][url=http://www.aocsale.com/][b]aoc gold[/b][/url][url=http://www.aocsale.com/][b]age of conan gold[/b][/url][url=http://www.buyfastgold.com/][b]aoc gold[/b][/url][url=http://www.aocgold10.com/][b]age of conan gold[/b][/url][url=http://buy-aoc-gold.hellgate-pd.com/][b]aoc gold[/b][/url][url=http://buy-aoc-gold.rgtrcredit.com/][b]age of conan gold[/b][/url]

  116. rt Says:

    ere

  117. Iamme Says:

    I tried using a few free plugins, but I kept having problems. Its not that I am not technically savvy, I know a lot about networking and software, I just do not know anything about php. And this was my problem. Whenever the plugin I was using developed a problem I had to rely on the person or people who released it to help. As it was a free plugin that left me with users ready to signup, no working membership site and waiting for free support for a free plugin.

    I looked everywhere for a wordpress membership plugin that would take subscriptions via paypal and would allow me to charge on a subscription basis for each access level I wanted to set up. Eventually I have up and bought one. It was only €19.99 for a whole year and that included support. It is called wp-member and I have found it really easy and straight forward to use. I contacted their support when I had a quick question and found that they have online support! I can not shout about this membership / payment plugin enough.

  118. karen Says:

    This is an awesome, plug-in, thanks so much.

    A few requests, if you’re looking for them:

    1) The ability to change multiple items’ priorities all at once (think drop-down where priority is currently listed on the admin page)

    2) More priority levels (maybe just numerical: 1-5)

    Thanks!!

  119. warhammer gold11 Says:

    cheap warhammer goldwarhammer gold   

  120. wow gold Says:

    Thanks!!

  121. Top WordPress Plugins For Every Type of Blog! - The Best Blogging Upgrades Available | The Net Fool Says:

    [...] Our To-do List Plugin What if you have multiple authors, but can’t always communicate? Out To-do List lets you put [...]

  122. PiErO Says:

    Hello,
    i just to known if it’s possible that the members of the team for the administration of the website will be advertise by e-mail when a memeber created a task ?

    it’s will be a good option to evoluate this plugin

    Thanks

  123. Promotional Products Says:

    I can see that you are putting a lot of time and effort into your blog and detailed articles! I am deeply in love with every single piece of information you post here. Will be back often to read more updates!
    Cheers,
    Promotional Products

  124. Sohbet Says:

    thanks

  125. sohbet Says:

    thansk

  126. mirc Says:

    thansk

  127. Jocuri Says:

    Thank you for adding the fuctions!

  128. Jocuri Says:

    Thank you for adding the fuctions! great one

  129. chat Says:

    The ability to change multiple items’ priorities all at once (think drop-down where priority is currently listed on the admin page)

  130. sohbet Says:

    its good i will use it thanks a lot.

  131. Sohbet Says:

    Sohbet

    thanks you

  132. Estetik Says:

    i like this blog, thanks

  133. PiErO Says:

    The advertising by mail with notification it is possible ?

    Thanks

  134. muhabbet Says:

    Cool, the post.

    Thanks for the information

    sohbet

  135. mirc Says:

    thank you

  136. otomobil Says:

    entre el administrador principal de un blog colectivo con sus autores, y quizás combinado con Our Todo List, otro plugin para WordPress que permite generar listas de tareas y/o ideas, los blogs colectivos

  137. wowgolds987 Says:

    At the beginning of creation, in the name of a pantheon of the great God to send governance, the Titans have to break through the darkness and completed hundreds of millions of dollars to the chaotic world. Like an in-depth understanding of the sacred pantheon of it? mmoinn for your journey, providing a lot of wow gold , you become a more powerful role. Mmoinn can also help you find World of warcraft Gold in the Wow power leveling . World of Warcraft to your adventure!

  138. lida Says:

    interesting page

  139. lida Says:

    thanks

  140. oto kiralama Says:

    thanks

  141. oto kiralama Says:

    thank you

  142. lida Says:

    thanks , düzeltmek laz?m :)

  143. PiErO Says:

    The advertising by mail with notification it is possible ?

    Thanks

  144. chat Says:

    thanks

  145. çet Says:

    thanks you good.

  146. wowgolds987 Says:

    Would like to witness the overwhelming Azshara fighting in the capital of boiling? Mmoinn for you, providing a lot of wow money , so that you can lean more to buy the equipment. So that you can pass through an eternal spring, came to the ruins of the World. You can also find World of warcraft Gold in the wow power leveling . As soon as possible to your adventure!

  147. warhammer gold Says:

    i knowwar gold   buy war gold   

  148. labioplasti Says:

    I think there is a better way to parse the directory of the locale (load plugin textdomain) but with a fixed labioplasti directory it works.
    Maybe you find a better way.

  149. porno izle Says:

    Would like to witness the overwhelming Azshara fighting in the capital of boiling? Mmoinn for you, providing a lot of wow money , so that you can lean more to ?ark? sözleri  dinle  mp3  izle  porno izle  sex izle  resimler
    buy the equipment. So that you can pass through an eternal spring, came to the ruins of the World

  150. wowgolds987 Says:

    The sale of warcraft gold professional trading platform mmoinn come! Hurry up! Here are the cheapest wow gold , in this purchase is the safest fastest! We provide you with the best service. You can always find the Gold Coast wow power leveling .

  151. wowgolds987 Says:

    Would like to enhance the role fastest speed of the magic? Then you must come and take a look at mmoinn! Here is a buy wow gold the best. You can save huge expenditure will be able to get the cheapest wow gold , you can find around quel “Thalas wow power leveling . Into action as soon as possible!

  152. susanna Says:

    wow power leveling ,[url=http://www.mygamesale.com/]wow gold[/url] and [url=http://www.powerlevelings.com]wow power leveling[/url]

  153. susanna Says:

    wow power leveling , wow gold and wow power leveling

  154. son dakika haber Says:

    http://www.ozgurdurum.net/

  155. en son haber Says:

    http://www.ozgurdurum.net/

  156. tuba buyukustun Says:

    http://www.ozgurdurum.net/

  157. warhammer online Says:

    wow gold
    warhammer gold warhammer, war, warhammer online, wiki

  158. Chat Says:

    Thanks You

  159. Muhabbet Says:

    Thanks You

  160. Ask Fali Says:

    Thanks You

  161. ???????? Says:

    goo

  162. jinrong Says:

    I enjoy reading your blog. I especially like the term delayer.

    But here are a few observations:

    Your link to Wattsupwiththat is over a month old. Global temperatures have continued to drop. Here’s a more recent link to their analysis.

    Flash Drive| SUB ContractingFlash Card| Memory Module| Memory Card|
    Smt Electronic Manufacturing|Electronics Contract Manufacturing| Electronic Contract Manufacturing Services| Subcontract Pcb Assembly

  163. 35 Tips Tricks To Manage and Handle Multi-Author Blogs | Wordpress Says:

    [...] Our Todo List [...]

  164. Wordpress Blog Services - 35 Tips Tricks To Manage and Handle Multi-Author Blogs Says:

    [...] Our Todo List [...]

  165. Advanced Wordpress Membership & Content Management Plugin. | 7Wins.eu Says:

    [...] 20+ Wordpress Plugins for your Membership or Community Site | Wordpress Plugins Wordpress Dashboard Editor IMAPO » Blog Archive » Hello world!Invision Power Board & Wordpress Integration | Invision BridgeWP Hive - Multiple Wordpress Blogs in a Single Installation | The Open CompanyACE version 1.2.3 is out! | Advanced Category Excluder MySpace Crossposter v2.0a ReleasedWordpress by Examples » Blog Archive » Our Todo List Plugin [...]

  166. Paolo Benvenuto Says:

    I have translated the plugin in italian, but I haven’t a site where I can upload it, where could I put it? May I send it you?

  167. Paolo Benvenuto Says:

    The link to the 3rd translation, above, doesn’t work any more.

  168. Paolo Benvenuto Says:

    Wouldn’t it be better to put the translated .po files in the downloadable plugin archive?

    This way the user could have it translated in his/her language (if present) without the need to go and download another package.

  169. Wordpress Management Plugins | ULTRABILISIM Says:

    [...] Our Todo ListA plugin allowing authors to get together to share ideas and tasks with a managable section in Wordpress administration section. [...]

  170. burun Says:

    Thanks for posting these designs and layout trends. I’m currently working on a new website and some of these tips may come in handy.

  171. 35 Tips Tricks To Manage and Handle Multi-Author Blogs Says:

    [...] Our Todo List [...]

  172. 35 Tips Tricks To Manage and Handle Multi-Author Blogs Says:

    [...] Our Todo ListA plugin allowing authors to get together to share ideas and tasks with a managable section in Wordpress administration section. [...]

  173. 35个多人博客wordpress插件 | 第九维 Says:

    [...] Our Todo List 顾名思义,我们的任务列表,团队任务管理。 [...]

  174. plastik cerrahi Says:

    Funny how Donohue’s point seems to be being made as this post devolved from discussing goodness for goodness’ sake vs religion demading that you be good, to gay rights and gay bashing, violent content and freewheeling epithets. I always thought of myself as a fun loving atheist. Can’t we all just get along?

  175. Un blog multi-autore con wordpress | Alcuni plugin molto utili | Problogging Says:

    [...] pubblicare note nella dashboard che i vostri autori potranno solo leggere e non modificare, o Our ToDo List, con il quale condividere idee e spunti con il resto del [...]

  176. mirc Says:

    thanx you

  177. cheap jordan shoes Says:

    dan wholesale adidas shoes [url=http://www.airforceonewholesale.com/]rare air force ones[/url][url=http://www.airforceonewholesale.com/]nike low dunks[/url]
    Air Jordan [url=http://www.branddaze.com/]Jordan Shoes[/url]Air JordanAir Jordan
    [url=http://www.branddaze.com/]wholesale Jordan[/url]Air JordanAir Jordan[url=http://www.branddaze.com/]wholesale Jordans[/url][url=http://www.branddaze.com/]wholesale Air jordans[/url]Wholesale Air Jordan[url=http://www.branddaze.com/]Air Jordan Shoes[/url]Wholesale Air Jordan[url=http://www.branddaze.com/]Wholesale Air Jordan[/url]
    Wholesale Air Jordan[url=http://www.branddaze.com/]cheap Jordan shoes[/url][url=http://www.branddaze.com/]Cheap air Jordan[/urlWholesale Air JordanWholesale Air Jordan[url=http://www.nikejordanshoesonsale.com/]Buy jordan shoes[/url]

  178. porno izle Says:

    thanks a lot of

  179. mirc Says:

    thanks.

  180. DAnTEL Says:

    thank you

  181. runescape gold Says:

    its cool site,i like it~

  182. Air Jordans Says:

    its cool site,i like it~

  183. Air Jordan Says:

    its cool site,i like it~its cool site,i like it~

  184. Estetik Says:

    My only real problem with google analytics is that it doesn’t work very well with a lot of ASP pages, which a lot of clients use nowadays. It can also get kind of hairy when trying to get it to understand what a conversion is. :D Instead of just any click, it needs to be one specific click haha.

  185. DAnTEL Says:

    thank you..

  186. runescape gold Says:

    ????
    [url=http://www.sz-window.com]????[/url]

  187. sohbet Says:

    Thanks a lot..

  188. Oyun Says:

    thanks a lo..

  189. ilahiler Says:

    Thank you

  190. kurye Says:

    thank you very muchhh

  191. ms Says:

    In Maple Story, players will be able to create characters that will grow as they learn new skills and become stronger. There are four characters to choose from: Warriors, Bowmen, Magician, or Thief. These characters can be dressed in many different and colorful outfits. Personalizing characters is one of the goals of Maple Story. Once a character has been created, they will learn skills that will help them when they reach Victoria Island.

    http://www.cheap-msmesos.com
    http://www.cheap-msmesos.com/index.html
    http://www.allgametrade.com

  192. Penis enlargement Pills Says:

    make@hotmail.com

  193. 35 Tips Tricks To Manage and Handle Multi-Author Blogs | Web Burning Blog Says:

    [...] Our Todo List [...]

  194. film izle Says:

    Thank you canim saol..

  195. sohbet Says:

    Thank you very much this information is very important
    Good Works

  196. Sohbet Says:

    Thank you very much this information is very important

  197. ms Says:

    In Maple Story, players will be able to create characters that will grow as they learn new skills and become stronger. There are four characters to choose from: Warriors, Bowmen, Magician, or Thief. These characters can be dressed in many different and colorful outfits. Personalizing characters is one of the goals of Maple Story. Once a character has been created, they will learn skills that will help them when they reach Victoria Island.

    http://www.cheap-msmesos.com
    http://www.cheap-msmesos.com/index.html

  198. Penis Enlargement Says:

    Effective and fast penis enlargement is entirely possible with the right techniques used consistently and correctly, and you can even see real results within two to three weeks! I used specific yet very simple and easy-to-duplicate techniques to increase the size of my penis from an embarrassing 5.5 inches long and 5 inches around to over 8 inches long and exactly 6 inches around!

    To help other smaller-than-average men become big and thick like I did, here are the answers to some frequently asked questions about effective and fast penis enlargement:

  199. 30+提供多人博客的wordpress插件 | 诸葛布袋 Says:

    [...] Our Todo List 顾名思义,我们的任务列表,团队任务管理。 [...]

  200. laptop batteries Says:

    you can even see real results within two to three weeks! I used specific yet very simple and easy-to-duplicate techniques to increase the size of my penis from an embarrassing 5.5 inches long and 5 inches around to over 8 inches long and exactly 6 inches around!

  201. estetik Says:

    Gö?üs Esteti?i
    Burun Esteti?i
    saç Ekimi
    estetik
    Estetik Merkezi
    Burun Esteti?i
    Motosiklet ehliyeti
    Klima Servisi
    Özel Hastane

  202. MM Says:

    Certainly, wow goldthere was no physical wow golddefect. By its perfect shape, wow goldits vigour, and its natural dexterity in the use of all its untried limbs, wow goldthe infant was worthy to have been brought forth in Eden; worthy to have been left there,to be the plaything of the angels after theworld’s first parents were driven out. wow goldThe child had a native grace which does not invariably coexist with faultless beauty; its attire, however simple, always impressed the beholder as if it were the very garb that precisely became it best. wow goldBut little Pearl was not clad in rustic weeds. Her mother, with a morbid purpose that may be better understood hereafter,wow gold had bought the richest tissues that could

  203. astroloji Says:

    thank you very muchhh

  204. Paolo Benvenuto Says:

    After upgrading wordpress to 2.7, ourtodo doesn’t work anymore. From the todolist manager, it permits only to add a todo item, it doesn’t permit editing nor canceling an item: clicking the corresponding link the browser offers the same page again

  205. nian Says:

    The open policy dofus kamasmeans that our country is open to investment, trade and technical and economic cooperation with other countries on the basis of equality and mutual benefitkamas dofus. The purpose of open policy is to acquire advanced technology, management skills to serve our socialist construction so as to promote the realization of the four modernizations.

  206. caocao Says:

    ??????????????

  207. Bryan Veloso Says:

    There is a single change needed for this plugin to work with 2.7. All you have to do is change “edit.php” to “tools.php” in line 40 which says…

    $otd_location = get_settings(’siteurl’) . ‘/wp-admin/edit.php?page=’ . otd_plugin_basename(__FILE__);

  208. jemmy Says:

    uo gold Ultima Online Gold, UO Gold
    uo gold Markee Dragon
    uo gold markeedragon.com, markeedragon.net
    uo gold uoresources.com
    uo gold uotreasures.com
    uo gold leogaming.com
    uo gold ultimacodes.com
    aoc gold
    aoc gold
    uo gold

  209. sdf Says:

    wholesale jewelry
    jewelry store
    fashion jewelry
    crystal jewelry
    jewelry wholesale
    pearl jewelry
    wholesale crystal
    wholesale pearl
    wholesale coral jewelry
    wholesale turquoise jewelry
    wholesale shell jewelry

  210. wow gold Says:

    Bessie and I conversed about old times an hour longer, wow goldand then she was obliged to leave me: I saw her again for a few minutes the next morning at Lowton, while wow goldI was waiting for the coach.wow gold We parted finally at the door of the Brocklehurst Arms there: wow goldeach went her separate way; she set off for the brow of Lowood Fell to meet the conveyance which was to take her back to Gateshead,wow gold I mounted the vehicle which was to bear me to new duties andwow gold a new life in the unknown environs of Millcote.

  211. sohbet odalari Says:

    http://www.sohbet39.com

  212. sohbet Says:

    tahks

  213. sohbet Says:

    chat

  214. chat Says:

    sohbetci

    tahkSs

  215. sohbet odalar? Says:

    sohbet odalar?

  216. superalem Says:

    To be an adult you need to take sohbet odalari responsibility, this is so obvious that no one ever considers it. To be truly adult we need to let go of our inhibitions, chat
    limitations and fears.sicak izle For a person with debilitating back pain,
    sohbet continuing my education after rehabilitation was scary

  217. superalem Says:

    To be an adult you need to take sohbet odalari responsibility, this is so obvious that no one ever considers it. To be truly adult we need to let go of our inhibitions, chat
    limitations and fears.sicak izle For a person with debilitating back pain,
    sohbet continuing my education after rehabilitation was scary

  218. filim Says:

    There is a single change needed for this plugin to work with 2.7. All you have to do is change “edit.php” to “tools.php” in line 40 which says…

  219. runescape gp Says:

    good

  220. m?rc,mirc Says:

    thanks

  221. m?rc,mirc Says:

    thanks you

  222. chat,sohbet Says:

    thanks you site admini.

  223. Film izle Says:

    thanksss

  224. WoW gold Says:

    WoW gold
    This blog, called WoW gold Blog, is to inform you about WoW, and how to make money with it. WoW gold is the most important thing in WoW, because you cant get good equipment or all your abilities, when you dont have enogh http://www.wow-gold-blog.com wow gold. There are so many ways to get WoW gold, but you have to decide which way is the best for you.
    You can get http://www.buy-wow-gold-hint.com buy woW gold by killing a lot of enemie, walking all over Azeroth. In a lot of corpses you will find a small amount of http://www.cheap-wow-gold-hint.com cheap WoW gold. But this way is hard and takes a lot of time.
    The Auctionhouse in WoW is the best way to make a lot of WoW Gold. If you want to Buy http://www.randyrun.com wow gold over the Internet, then you Pay for it either in Dollars or Europe. You will get the WoW Gold by going into the Game and waiting at a told place and the time for a Gamer to come by and transfering you the http://www.wowgold-news.com WoW gold Amount you have been paying for.

    WoW
    Blizzard Entertainment is the publisher of World of Warcraft (WoW). Thay created the most important and the most successful MMORPG of the world. They got a lot of awards for the masterpiece http://www.wow-inside-blog.com WoW. They get a big exchange every mounth only with the account costs of World of Warcraft. Blizzard published a lot of other successful games, WoW too.

  225. Sohbet Says:

    thanks you admin..

    Sohbet

  226. bizimlesohbet Says:

    THENKS YOU

  227. zrmbilisim katk?lar? ile 2009 seo yar??mas? Says:

    yok art?k thanks

  228. Lida Dai Dai Hua Jiao Nang Seo Yarismasi Says:

    seo lida dai thanks go shuddy

  229. fghfg Says:

    AN EAGLE stayed his flight and entreated a Lion to make an
    alliance with him to their mutual advantage. The Lion replied,
    “I have no objection, but you must excuse me for requiring you to
    find surety for your good faith, for how can I trust anyone as a
    friend who is able to fly away from his bargain whenever he
    pleases?
    Q: Some people know where to buy the cheapest WOW GOLD it? A: Wow gold Power Leveling - We supply the Cheapest Wow Gold,
    power leveling service
    [URL=http://www.worldwarcraftgold.org]Wow Gold[/URL] Power Leveling - We supply the Cheapest

    [URL=http://www.mygamegold.com]Wow Gold[/URL] , power leveling Service Online.

    wow goldPower Leveling - We supply the Cheapest

    wow goldpower leveling Service Online.

  230. inwowgold Says:

    wow gold

  231. Sergej Müller Says:

    WordPress 2.7 ready Version of Our Todo List Plugin: http://playground.ebiene.de/1021/our-todo-list-wordpress-plugin/

  232. 35 Tips Tricks To Manage and Handle Multi-Author Blogs | Castup Says:

    [...] Our Todo List [...]

  233. exe Says:

    This plugin is great !
    I looking for it nearly one month!!!

  234. marlll Says:

    20six.fr

  235. marlll Says:

    gnomz bienvoir arviblog

  236. marlll Says:

    blogfreehere centerblog

  237. wow gold Says:

    Thanks, it is very good, I like it very much wow gold

  238. wow gold Says:

    Welcome to FAQ
    Aktuelle News

  239. wow gold Says:

    WOw GOld wow goLd

  240. wow gold Says:

    wow gOld
    WOW GOld

  241. bizimlesohbet Says:

    nice site thanks

  242. wow gold Says:

    Good News! Buy wow gold to do in mmoinn.com! We provide you with cheap wow gold and wow power leveling , there are more surprises waiting for you! To buy as soon as possible! Mmoinn.com trade in the safe and fast!

  243. dreambox Says:

    rand Opening Sale!!! Modern style furniture, Sofa, Platform beds…

  244. sohbet Says:

    Google Chrome isn’t available for Linux yet. I’m running Ubuntu 8.04 Sohbet on both of my laptops. Kind of surprising that Google is so gung-ho about open source software, yonja but didn’t release a version that runs on an open source OS.

  245. chat Says:

    Google Chrome isn’t available for Linux yet. I’m running Ubuntu 8.04 Chat on both of my laptops. Kind of surprising that Google is so gung-ho about open source software, sohpet but didn’t release a version that runs on an open source OS.

  246. penis enlargement Says:

    Natural Herbalz - We Care Your Health
    An America’s Best Online Natural herbal health care products Review Store On Mens and Womens health, Skin Care, General Health, Sexual Health, Hair Care, Weight loss and More Health Care products, Treatments, Articles and Information. http://www.naturalherbalz.com

  247. oyun Says:

    ? have followed your writing for a long time.really you have given very successful information.

  248. rap dinle Says:

    I am moving our platform from one built in-house to Wordpress…I am so excited!!!

  249. sohbet Says:

    rand Opening Sale!!! Modern style furniture, Sofa, Platform beds…

  250. Pupsor Says:

    That’s good plungin! I’ll use it for my wordpress and control my works. Thank you!

  251. WOW GOLD Says:

    On Tuesday I posted about 16-year-old Danielwow gold Petric shooting his parents over Halo 3. Petric shot them both in the head, killing his mother and wounding his father. Now Petric is pleading momentary insanity

  252. Sohbet Says:

    sohbet odalar?
    mirc

    thanks my friend..

  253. sheard Says:

    I am moving our platform from one built in-house to Wordpress…I am so excited!!!GOLD PRICE

  254. rap Says:

    Quite nice colors, but for me a bit distracting for the eyes..Two bright…They could have done smth concerning technology I guess..

  255. halid Says:

    http://www.Dostyakasi.com edebiyat

    http://www.dostyakasi.net mirc

  256. halid Says:

    http://www.turku.tk turku sozleri

  257. film izle Says:

    film izle | sinema izle thanks mate.

  258. sohbet odalar? Says:

    Thanks for the great work. !

  259. ssk Says:

    ssk

    tanx see you later

  260. jewelry store Says:

    wholesale jewelry
    jewelry wholesale
    costume jewelry
    wholesale costume jewelry
    fashion jewelry
    wholesale fashion jewelry
    handmade jewelry
    wholesale handmade jewelry
    wholesale pearl

  261. sohbet odalari Says:

    Seviyeli sohbethref=”http://www.beyzam.net”>
    Sohbet Siteleri
    href=”http://www.chattur.coml”>
    Sohbet chat
    href=”http://www.chatnur.com”>
    Chat
    thaks for the info

  262. sohbet odalari Says:

    Sohbet
    Sohbet siteleri
    Seviyeli
    chat
    cet
    seviyeli
    Sohbet chat
    Sohbet siteleri

    oyle olmassa bole olsun :)

  263. ünlüler Says:

    I am moving our platform from one built in-house to Wordpress…I am so

  264. web tasar?m Says:

    web tasar?m?

  265. web tasarim Says:

    web tasarimi

  266. mirc Says:

    thanksyou

  267. oyun oyna Says:

    thank for this pos

  268. ilahiler Says:

    it is very good

  269. Estetik Says:

    thanks for you, nice job.

  270. online games Says:

    I have to say….thanks….this article is much more clear and efficient…

  271. rap dinle Says:

    Yeah my blog stay at 2.0.x series too, upgrading may takes a lots of hustle. If I wanna upgrade, I prefer install a new one and put it as a beta page first, after fine tune the stuff, then replace old one into new one…

  272. chat odalar? Says:

    thanks you

  273. turkce mirc indir Says:

    Thanks My Life.

  274. sohbet Says:

    thanks you

  275. okey oyna Says:

    thanks

  276. okey oyna Says:

    thank you

  277. Sohpet Says:

    thanks

  278. loids Says:

    I watched in horror as a Studded Tunic from the phantasm barely viewed the hideous offspring of the model! uo gold I watched in horror as a Wooden Box ridiculously accurately learned the cyclopian truth about the Jaanas Staff! uo gold At long last, the secretly geneological vault of the frozen, impromptu scythe was revealed! wow gold Most people believe that a devilish pit recognized a scythe beyond a Berserkers Scythe, but the curious The Grim Reapers Scythe is much more terrible.

  279. Natural Penis Enlargement Says:

    American largest online natural herbal health care products reviews and medicines for all kind of health care treatments and solutions for men’s and women’s health, skin care and hair care, general health and sexual health, weight loss and diet from http://www.naturalherbalproduct.com

  280. mirc indir Says:

    i like wp nice letter thanx man ;)

  281. ??? Says:

    thanks

  282. nike588 Says:

    http://www.nike588.com

  283. Toprak Says:

    When I installed it I got a link under Manage and under Options and both were the same thing - to set up who would use it. There was nowhere to actually create the lists.

    chat

  284. kiral?k tekne Says:

    thanks

  285. kiral?k tekne Says:

    thanks

  286. mirc Says:

    mirc m?rc mirç

  287. sohbet Says:

    its good i will use it thanks a lot…
    Http://www.alemyerin.net

  288. yonja Says:

    its good i will use it thanks a lot..

    http://www.alemyerin.net

  289. Oyun Says:

    thanks from Oyun

  290. kombi servisi Says:

    thank you from Kombi Servisi

  291. okey Says:

    thanks you

  292. netlog Says:

    thanks

  293. chat Says:

    thanks you beybi

  294. chat kanallar? Says:

    thanks you

  295. Penis Enlargement Pills Says:

    Natural Gain Plus for Penis Enlargement Pills

    The Natural Gain Plus program is a powerful natural Penis Enlargement Pills program that is now available to you.. We have continued success with out program using the latest penis enhancement techniques so you can enjoy a strong healthy sex life.

    Natural Gain Plus exercises can give you amazing results!

    The Natural Gain Plus program combines exercise techniques that we have researched to that providie men with increased blood flow, firmer, stronger, and fuller- feeling erections. It also contains an herbal supplement that is a and a blend of traditional natural herbal ingredients and amino acids to helps support male virility.
    Doctor Approved Penis Enlargment Pill Rated NO.1 Male Enhancement Program on the Market!

  296. siki?i izle Says:

    thank you from turkey

  297. oyun oyna Says:

    Any chief information officer concerned with computer system reliability and application availability in the competitive financial markets is thinking one of two things: either make failure impossible

  298. Denizli Rehberi Says:

    Denizli Rehber
    Thank You for this plugin

  299. sohbet odalar? Says:

    thanks you

  300. sohbet odalari Says:

    thanks.

  301. Sterling Ledet Says:

    Is there a version of this that works with WordPress 2.7? When I try to use this, it seems to add todo’s OK, but nothing appears in the list.

  302. ilahi dinle Says:

    ilahi dinle - ilahiler - bedava ilahiler - indir - ilahidinle

  303. chat Says:

    thanks web master

  304. güzel sözler Says:

    thanks web masterrrrrrrrr

  305. cet Says:

    Thanks you. XxX

  306. loudshout Says:

    Hi,
    Not sure what am I doing wrong here. Trying to install the ToDo list - I am running WP2.6. Aftert installing, when I go under Manage, I click on “To Do list”.
    - “Add a new” link
    - Enter any text in textarea, choose anything from priority dropdown, and hit submit
    - It confirms saying a new Todo was created.
    - But I see nothing in the Todo list.

    So what am I missing here? Please help.

  307. vanessa Says:

    sadly this doesnt work in the latest version of wordpress :(

  308. sohbet Says:

    thanx for nice artichle

  309. chat Says:

    thanx for nice artichle wety much

  310. loudshout Says:

    On a followup note: I had to run the script and now I see the ToDo list being created.
    However, few more things:
    1. How do I see the ToDo list on the blog?
    2a. Can I add more (custom) priority, than the three out-of-box priority?
    or
    2b. Can I rename them into something else?

  311. mirc Says:

    thanks

  312. Jonas Says:

    Great plugin, however it won’t work with WP 2.7 as other has mentioned. Any words on an update?

  313. water damage chicago Says:

    Great. Thanks for posting!

  314. outdoor antenna Says:

    That’s a good plug-in to have. I haven’t seen it yet; maybe I’m just overlooking it.

  315. chat siteleri Says:

    very nice good

  316. turkchat Says:

    good

  317. turkchat Says:

    askimsin netyap

  318. sesli sohbet Says:

    thank you arkadaslar

  319. youtube Says:

    tnx

  320. salarha Says:

    thanx you site admin

    salarha

  321. Denizli Rehberi Says:

    Denizli haber
    thanks for a lot

  322. sohbet Says:

    thanks you admin

  323. m?rc Says:

    thanks

  324. mirc Says:

    thanks you

  325. mirc Says:

    thanks youu

  326. çet Says:

    thanks you.

  327. sohbet Says:

    thank you very much
    http://www.ircask.com
    Sohbet Ekle
    sohbet

  328. sohbet odalar? Says:

    thanks

  329. sikis Says:

    thanks

  330. sikis izle Says:

    thanksssss

  331. wholesale jewelry Says:

    Like you page!

  332. pearl jewellery Says:

    Good page! I like!

  333. dfhdfh Says:

    dgdfgdfg

  334. özel güvenlik Says:

    very good plugin. thank you

  335. a?k ?iirleri Says:

    thank you webadmin

  336. yiwu Says:

    hello, world.

  337. sikis porno izle Says:

    Great. Thanks for posting!

  338. rap mp3 Says:

    Congratulations to find good information .. I wish you continued good works always follow edecem.ba?ar?lar

  339. Sohbet Odalar? Says:

    http://www.sohbet-odalari.biz
    http://www.chat-odalari.net
    http://www.bizimmirc.com

    thank you very much

  340. Sohbet Odalari Says:

    Chat odalar?

    Chat

    Sohbet odalar?

    thank you very much

  341. Sohbet Odalari Says:

    Chat odalari

    Chat

    Sohbet odalari

    thank you very much

  342. Film izle Says:

    thanks a lot

  343. Craig Rosenblum Says:

    Is there a way to set it up, so non-admin users, can add their own items to their own to-do-list…and then either choose to make it public or for their own viewing privaledges?

    Thank you..

    and you really got a lot of spam comments here…that kind of sucks..

  344. sohbet odalar? Says:

    thank you very much
    sohbet sohbet odalar? sohbet odas? bedava chat

  345. sohbet odalar? Says:

    thanks you..
    sohbet odalari

  346. radyo dinle Says:

    thank you

  347. wholesale jewelry Says:

    thanks very much

  348. wholesale fashion jewelry Says:

    thanks very much

  349. sex hikayeleri Says:

    thanx

  350. zurna Says:

    on en a rien a foutre des commentaires a la geeeeeeek pour savoir grace a quel anti spam de billou ce blog est mieux qu’un autre :)….Sacre Billou :)

  351. DAnTEL Says:

    a very good job sharing your health ..
    I wish you continued success ..
    thank you ..

  352. ??? Says:

    thanks.

  353. ??????? Says:

    ???????
    ?????
    ??????.thanks.

  354. siki? Says:

    thank u. this good wp plugin..

  355. Güzel Sözler Says:

    C marrant. Je suis tombé sur le site par hasard et j’ai me rendre compte de se qui m’attends en Inde. J’y vais dans 4 mois. Je suis vraiment impatient. Belles Photos, beaux “reportages”. Cool

  356. dizi izle Says:

    C marrant. Je suis tombé sur le site par hasard et j’ai me rendre compte de se qui m’attends en Inde. J’y vais dans 4 mois. Je suis vraiment impatient. Belles Photos, beaux “reportages”. Cool

  357. samsun Says:

    thanks you

  358. e-okul Says:

    thanks

  359. muhabbet Says:

    thank you

  360. sivas sohbet Says:

    Penis Enlargement Options - Methods to Increase Penis Size Methods to increase penis size - Natural penis enlargement, supplements, penis pumps, stretching devices and surgery.

  361. wonderland Gold Says:

    welcome to the wonderland Gold

  362. poker Says:

    thank you

  363. hdtv antenna Says:

    I think that’s a great idea. It’s an easy way to relay basic information to other members of the blog.

  364. water damage arlington heights Says:

    Great stuff! I think that might come in handy on my blog!

  365. wow gold Says:

    Professional wow gold trading platform, fast mode, all in mmoinn.com. As soon as possible to buy cheap wow gold it! There are wow power leveling waiting for you!

  366. akrep Says:

    Thanks great

  367. rap dinle Says:

    Good…
    I’ll use it for my wordpress and control my works. Thank you!

  368. blog Says:

    Thank you very much

  369. film izle Says:

    lots of thanks..

  370. patent Says:

    thankss youu marka patent..

  371. sa?l?k bilgileri Says:

    Very very goood ,Thank you…

  372. cilt bak?m? Says:

    Thank you.. its helpful

  373. gfdgdf Says:

    Thank you.. its helpful

  374. e-okul Says:

    thanks webmasters

  375. wow gold Says:

    Every morning the cipher clerk operating a Hagelin inside the embassy reset the wheels before beginning transmissions.

  376. wow gold Says:

    New built wowspa.com for you to provide more preferential cheap wow gold , allows you to buy wow gold more easily, you can also quickly find the wow power leveling !

  377. Peter Kindström Says:

    I have uploaded a swedish .mo file to the swedish WP-support web site: http://wp-support.se/filer/

  378. flash oyun Says:

    thanks webmaster

  379. kurye Says:

    thank you very good

  380. lotro gold Says:

    Of the thirteen companions of the great Thorin Oakenshield, Dori was often responsible for keeping an eye out for the Company’s burglar, the hobbit Bilbo Baggins. Now Dori acts as an emissary to the dwarf-mines of Othrikar in the North Downs. Learn more about this famous dwarf in this week’s content update!

    Dori and his brothers, Nori and Ori, were among the thirteen companions of the great Thorin Oakenshield on the Quest of Erebor. Dori was often responsible on that journey for keeping an eye out for the Company’s burglar, the hobbit Bilbo Baggins. He proved quite dissatisfied with the task, but nonetheless tried his best.
    http://www.lotro-shop.com
    http://www.cheap-msmesos.com
    http://www.allgametrade.com

  381. wow gold Says:

    A limited supply item is an item for sale from a vendor but the vendor only has a very limited supply of items for sale [url=http://www.wow-cheapgold.com]wow powerleveling[/url]. You can know this by the item having a number in the bottom right corner of the picture. These items do respawn…while some take 30 minutes to respawn others take up to 24-48 hrs! The limited supply items you want to look for to make a lot of gold are usually recipes. I found those to be the most profitable. Typically you can buy a recipe for around 20s and sell it on the auction house for 1-2 gold or more in some cases. I have purchased a recipe before at 25 silver and sold it for [url=http://www.wow-cheapgold.com]wow gold[/url].

  382. wow gold Says:

    Players are to enjoy wowspa.com buy wow gold , five minutes, they can gain more of the cheap wow gold and wow power leveling . At wowspa.com trade both safe and fast!

  383. ssk sorgulama Says:

    ssk

    tanx see you later

  384. estetik Says:

    Great post. Very useful for me to read.

  385. estetik Says:

    great post. thanks a lot.

  386. lig tv izle Says:

    nice text thanks for all

  387. sohbet odalari Says:

    thnks a lot..

  388. sohbet Says:

    thanks…

  389. güzel sözler Says:

    sadly this doesnt work in the latest version of wordpress …

  390. Penis Enlargement Pills Says:

    American Online Pharmacy with FDA Approved Generic Viagra, Natural Gain Plus, Enlast Formula, Virility Ex Pills, Acnezine, Natural Pain Relief, Hoodia Gordonii, Breast Actives, Lip Plumper, Anti Aging Solution, Acnezine, Acne Spot Treatment at Lowest Prices. Visit : http://www.theherbalproducts.com

  391. kelebek Says:

    Thanks INVaDE

  392. Koxp indir Says:

    Koxp
    Koxp 1727
    Koxp 1728
    Koxp 1729

  393. wow power leveling Says:

    if wow gold and wow power leveling wow gold

  394. fashion jewelry Says:

    wholesale jewelry
    handmade jewelry
    jewelry wholesale
    costume jewelry
    wholesale costume jewelry
    wholesale fashion jewelry
    wholesale pearl
    wholesale crystal
    discount jewelry
    cheap jewelry

  395. plastik cerrah Says:

    Thank you very very good

  396. mirc Says:

    sohbet arkada?
    mirc
    chat
    çet
    sohbet
    mirç

  397. sex hikayeleri Says:

    sex hikayeleri
    ensest hikayeler
    sexhikaye
    yengem
    ensest hikayeleri
    bald?z sex

  398. izmir rent a car Says:

    good thanks

  399. rap dinle Says:

    Good.
    Thanks…

  400. alpha Says:

    wow power leveling
    [url= http://www.uppowerleveling.comwow power leveling[/url]

  401. mirc Says:

    mirc indir sohbet chat film indir divx film indir

  402. sohbet Says:

    limewire indir
    limewire
    limewire yükle ilahi

  403. ilahiler Says:

    thankss so much

  404. Network Marketing Says:

    Sorry, I need a little help. I made a template for todo-tasks.
    I don’t want to show Network Marketing NedirTodo if there is no Todo entry. How do i have to call ourtodolist_exists for this?

  405. burun estetigi Says:

    otomobil haberleri
    diyet
    estetik istanbul
    forum
    estetikA simple todo list plugin to share ideas/todos with blog members. All members work together to manage the todo list under “Manage” section in Wordpress administration interface.

  406. burun estetigi Says:

    estetikA simple todo list plugin to share ideas/todos with blog members. All members work together to manage the todo list under “Manage” section in Wordpress administration interface.

  407. ilahi Says:

    A simple todo list plugin to share ideas/todos with blog members. All members work together to manage the todo list under “Manage” section in Wordpress administration interface.

  408. kurye Says:

    Wordpress by Examples » Blog Archive » Our Todo List Plugin great article thank you.

  409. firmalar Says:

    thank you

  410. kafkas Says:

    thank you

  411. runescape gold Says:

    thanks for it

  412. Lapochka Says:

    Very useful files search engine. f-torrents.com is a search engine designed to search files in various file sharing and uploading sites.

  413. kelebek cet Says:

    thnx you by invade

  414. rtist Says:

    http://www.sell-nike-shoes.com

  415. Adult Games Says:

    Adult fun games for us too.

    Adult fun games for men, women, whoever wanting to enjoy something new in their lives. Online adult game and adult fun games are real too.

  416. nike shoes Says:

    http://www.nikemine.com/

  417. cheap chanel handbags Says:

    i like your things so much ,thank you

  418. air force ones Says:

    i like your things, it is a good things

  419. cheap jordans Says:

    http://www.jordanshoeok.com/air-jordan-1-c-1.html
    http://www.jordanshoeok.com/air-jordan-2-c-2.html
    http://www.jordanshoeok.com/air-jordan-3-c-3.html
    http://www.jordanshoeok.com/air-jordan-4-c-4.html
    http://www.jordanshoeok.com/air-jordan-5-c-5.html
    http://www.jordanshoeok.com/air-jordan-6-c-6.html
    http://www.jordanshoeok.com/air-jordan-7-c-7.html

  420. cheap coach purses Says:

    http://www.handbagdrop.com

  421. taylormade r7 Says:

    http://www.brandsgolf.com

  422. sex Says:

    very good sites

  423. komik f?kralar Says:

    Thanks admin.

  424. Penis Enlargement Says:

    American Online Pharmacy with FDA Approved Generic Viagra, Natural Gain Plus, Enlast Formula, Virility Ex Pills, Acnezine, Natural Pain Relief, Hoodia Gordonii, Breast Actives, Lip Plumper, Acnezine, Acne Spot Treatment at Lowest Prices. Visit : http://www.theherbalproducts.com

  425. penisenlargement Says:

    penisenlargement products reviews by consumer best choice to select one of the best penis enlargement system to get longer, larger and harder penis size with powerful erection and long time penis result and permanent straight and big penis at  http://www.penissizeenlargement.net

  426. credit card Says:

    Nice post.Good for RSS feeds.Try to find a property use your creditcard to get loan loans

  427. iklimsa bursa Says:

    thank you admin

  428. Sohbet Says:

    tesekkurler haf?z

  429. Chat Says:

    tesekkurler

  430. güvenlik sistemleri Says:

    thank your for your things

  431. engin topçuo?lu Says:

    a really good topic … We hope more will in the next day ..

    Engin Topçuo?lu ve netsis bayisi ve logo bayisidir.

  432. oyunlar Says:

    Really good topic. Thanks..

    oyunlar and oyun oyna mine.

  433. diet recipes Says:

    thanks good.

  434. video Klip izle Says:

    http://klipizle-tr.com

  435. video Klip izle Says:

    tanks

  436. radyo dinle Says:

    Thanks for writing this up. I’m a recent convert to OS X as well, and it takes a while to get used to everything. The things I took for granted when I was using XP. LOL.

  437. sohbet Says:

    your web site very quality

  438. film izle Says:

    your web site very quality

  439. wow gold Says:

    very good….

  440. müzik indir Says:

    Thanks for sharing ideas, a good plug

  441. direk izle Says:

    thank you

  442. sohbet odalar? Says:

    Excellent thanks admin.

  443. sohpet Says:

    Excellent thanks admin.

  444. belrion Says:

    wow gold
    wow gold

  445. su deposu temizli?i Says:

    http://www.ornekdepo.com

  446. travesti Says:

    thank you admin baba

  447. belrion18 Says:

    buy wow gold

    buy wow gold

    buy wow account

    buy wow gold

  448. belrion Says:

    buy wow gold

    buy wow gold

    buy wow account

    buy wow gold

  449. sohbet Says:

    thanks you… Sohbet
    Chat

  450. pearl jewelry Says:

    wholesale pearl jewelry, silver

    jewelry at http://www.casijewelry.com

  451. second post for checking affilate link | corebloggers.com Says:

    [...] Our To-Do List  A simple todo list to share ideas/todos with blog members. All members work as a team to manipulate the list under “Manage”. [...]

  452. ilan Says:

    Our To-Do List A simple todo list to share ideas/todos with blog members.
    http://www.ilanlarim.org
    http://www.cepkontor.org
    http://www.islamiotel.org
    http://www.lazerepilasyonn.net

  453. kolbasti Says:

    great plugin, thanks

  454. batteries Says:

    Thank you for sharing!

  455. Runescape Money Says:

    Vgoldzone.com is Runescape Gold supported by

  456. Dekorasyon Says:

    Thank you for sharing!

  457. uppower Says:

    wow power leveling
    wow powerleveling
    powerleveling

  458. wow gold Says:

    wow gold
    wow gold
    wow gold

  459. jewelry wholesale Says:

    Wholesale Jewelry
    Silver jewelry
    Pearl Jewelry
    Crystal Jewelry
    Hair Accessory
    Gemstone jewelry
    Amber Jewellery

  460. wholesale jewelry Says:

    Wholesale Jewelry engaged to provide jewelry wholesale ,we have a good factory in China, make us to be Jewelry Suppiler and Jewelry Manufacturer ,we have large jewelry market base in Yiwu city,all of our items base on small jewelry , our jewelry factory is located in Yiwu, the biggest commodity city in China. We have abundant products on show in clued fashion jewelry , Amber jewelry, Crystal Jewelry, Silver Jewelry, Bead Jewelry,Hair Accessory, Korean Jewelry, Jewelry Store Warmly welcome customers all over the world come and cooperation for mutual benefit.

  461. Samsun Says:

    Thansk you

  462. Samsun Haberleri Says:

    thans you

  463. bangkok hotel Says:

    Thank you for sharing.

    [url=http://www.mirthsathorn.com]Bangkok hotel[/url]

  464. Asian Dating Says:

    Wow. Cool. Thank you for sharing.

    Asian Brides

  465. korean jewelry Says:

    Jewelry Market
    Korean Jewelry

  466. çet Says:

    çet
    chat sitesi
    sohbet istanbul thank you very much admin.

  467. Edsion Smith Says:

    Thank you for all that, I have learned
    UGGS
    UGGS

  468. mario oyunlar? Says:

    thank you very much admin

  469. çe?me otel Says:

    great article thank you admin

  470. louis vuitton Says:

    cheap louis vuitton check this website for best price

  471. seviyeli sohbet Says:

    thanks you

  472. NETWORK MARKET?NG Says:

    thanks admin

  473. masinn Says:

    ????????????????????????????????????????????????????????????????????????????????????????????????????

  474. aa_mert Says:

    sohbet

  475. film izle Says:

    thank you

  476. chat Says:

    yesyes

  477. sohbet Says:

    yes baby

  478. gaming Says:

    some Gaming is so fun,and i like the cosplay for mmo too

  479. wow Says:

    Runescape
    Runescape gold

  480. funin Says:

    Eve online isk
    Guild wars gold

  481. figer Says:

    wow gold
    AOC gold
    Buy Eve isk
    Eve isk on sale

  482. seviyeli sohbet Says:

    Sohbet Odalari -
    Seviyeli sohbet -
    Sohbet siteleri -
    Sohpet -
    çet -
    cet -
    Online Sohbet -

  483. Okey Says:

    thank you very good
    Okey
    Okey Oyna
    Okey Oyunu
    Bedava Okey

  484. sohbet Says:

    thanks admin good post

    sohbet
    sohbet odlar?
    askalemi
    sohbet siteleri

  485. mirc Says:

    thanks site admin…

  486. türkçe mirc Says:

    thanks admin site.

  487. mirc indir Says:

    goog post.

  488. wow power leveling Says:

    Hi,I will give you some items,????-
    WoW Power Leveling-
    Wow Gold-
    Warhammer Power Leveling,good time!

  489. sohbet Says:

    thank you

  490. sohbet Says:

    thanks
    sohbet chat

  491. chat Says:

    Very veryy ver coskuyu baba

  492. seks sohbet Says:

    good loe can judge me

  493. Seo Company Says:

    Thanks for nice sharing and me hope you will also posts updates.

  494. frazier371 Says:

    enough.links of londonWatch me.Suits you well. That color looks really good on you. It suits you well.Tiffany EarringsSo disgusting.Tiffany JewelryThat’s too much.Don’t even think about it.Mutual understanding.Hard to pass up. Clothes on sale are hard to pass up.Just shoot me.Perfectionist.I can’t do two things at the same time.You’ll die a horrible death.

  495. Tiffany Bracelets Says:

    Thanks for writing this truely cracking blog post, I enjoyed reading it

  496. sXe Says:

    “Very veryy ver coskuyu baba ”

    Ulan ne adams?n?z haa :D

  497. dupinghua Says:

    Dream in louboutin shoes

  498. sobet Says:

    hi good thank you Clothes on sale are hard to pass up

  499. 35 Tips Tricks To Manage and Handle Multi-Author Blogs | Quest For News, A TUTORIAL Base Says:

    [...] Our Todo List [...]

  500. atlantica power leveling Says:

    atlantica power leveling

  501. jewelry wholesale Says:

    Good post,you let me know simple is better,I used to like complex ,however,I find simple one is excellent good!

  502. wholesale jewelry Says:

    Thanks for share,really good articles.

  503. sare Says:

    Louis vuitton knockoffs

  504. dupinghua Says:

    While women prize great accoutrement’s of all kinds; louboutin shoesLouboutin shoes found christian louboutin shoes

  505. dupinghua Says:

    christian louboutinspend a great deal of time thinkinglouboutin shoes discount about what to buy when it comes to shoes and handbags.louboutin shoes

  506. dupinghua Says:

    ed hardy caps to deal with when shopping at ‘bricks and mortar’ed hardy shirts stores for the best designer women’s shoes or handbags. ed hardy women

  507. dupinghua Says:

    Tiffany jewelryseem to occur when we tiffany silverare fighting other shoppers to Tiffany Bracelet

  508. wholesale jewelry Says:

    Good design and post,you let me know simple is better,I used to like complex design,however,I find simple one is excellent good!

  509. jewelry wholesale Says:

    Nice post,thanks!

  510. small wholesale Says:

    Thanks for posting!

  511. burun esteti?i Says:

    http://www.estetikburunizmir.com

  512. Penis Enlargement Says:

    VigRxPlus help men to gain up to 1-3 full inches in penis length and up to 25% in penis girth. you will probably be happy with the results. By using a VigRxPlus, you will not only improve your sex life, but it will also boost your confidence. VigRxPlus also help men to experience harder erections when they want them.Special Offer 50% discount plus shipping only available at http://www.naturalherbalsinc.com

  513. Penis Enlargement Says:

    It’s really great to post my comments on such a blog. I would like to appreciate the great work done by the web master and would like to tell everyone that they should post their interesting comments and should make this blog interesting. Once again I would like to say keep it up to blog owner!!!! http://www.naturalherbalsinc.com

  514. To Do List for WordPress - FriedelWebWorks Says:

    [...] by richfriedel on Jul.01, 2009, under Uncategorized Wanted to install something at a future date. So I thought to myself that a nice to do list on my WordPress dashboard would be great! After looking, the options were not looking so good. I even started to consider making one myself (I still might!) Then… I found this little gem. http://wordpress.byexamples.com/2007/01/29/our-todo-list-plugin/ [...]

  515. sare Says:

    Replica Louis vuitton handbags
    fake Louis vuitton
    Louis vuitton knockoffs
    designer bags
    louis vuitton bags
    louis vuitton purse
    coach bags
    wholesale replica handbags

  516. okey Says:

    Thank you very very much.

  517. penis büyütücü Says:

    cinsel saglik urunu penis büyütücü

  518. sare Says:

    http://www.fantastic-replica.net

Leave a Reply