Plugin Directory

Changeset 628721


Ignore:
Timestamp:
11/22/2012 04:34:29 PM (13 years ago)
Author:
quartz
Message:

update

Location:
wp-postit/trunk
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • wp-postit/trunk/js/code.php

    r628684 r628721  
    6363    //GET PARENT HEIGHT TO SET AFTER CLOSE
    6464    if($j("#note"+id).css("display")=="none")
     65    {
    6566        h = $j("#note"+id).parent("div").css("height");   
     67         w = $j("#note"+id).parent("div").css("width"); 
     68}
    6669
    6770    $j("#note"+id).slideToggle(500);
     
    9497    $j("#message_"+postid).html("sending...");
    9598    $j("#message_"+postid).css("display","inline-block");
    96     ta = tinyMCE.activeEditor.getContent();
     99    ta = tinyMCE.get('ta_postit_'+postid).getContent();
    97100    $j.ajax({
    98101        type: "POST",
  • wp-postit/trunk/postit.php

    r628684 r628721  
    5959            if (sizeof($myrows) == 1) {
    6060                $t = md5(uniqid($username . rand(), true));
     61                print $sql;
    6162                $sql = "update " . $table_name . " set text = '" . $_POST["postittext"] . "',token = '" . $t . "'  where username = '" . $username . "' and identifier = '" . $postid . "'";
    6263            }
  • wp-postit/trunk/readme.txt

    r628686 r628721  
    22Contributors: quartz
    33Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_donations&business=smmqam%40hotmail%2ecom&lc=CA&no_note=0&currency_code=CAD&bn=PP%2dDonationsBF%3abtn_donate_LG%2egif%3aNonHostedGuest
    4 Tags: post-it,memo,pad,help,personnal,notes
     4Tags: post-it,memo,pad,help
    55Requires at least: 3.0
    66Tested up to: 3.2.1
    77Stable tag: 1.0
    88
    9 This plugin allows personnal notes,memopad or help mode.
     9This plugin allows postit
    1010
    1111== Description ==
  • wp-postit/trunk/wp_postit.php

    r628684 r628721  
    5050{
    5151    global $current_user, $wpdb;
    52 
     52    $rows = null;
    5353    if ($current_user->user_login != "" || (get_option("wp_postit_help_mode") == "public" && get_option("wp_postit_type") == "help")) {
    5454        $table_name = $wpdb->prefix . "postits";
Note: See TracChangeset for help on using the changeset viewer.