Changeset 628721
- Timestamp:
- 11/22/2012 04:34:29 PM (13 years ago)
- Location:
- wp-postit/trunk
- Files:
-
- 4 edited
-
js/code.php (modified) (2 diffs)
-
postit.php (modified) (1 diff)
-
readme.txt (modified) (1 diff)
-
wp_postit.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
wp-postit/trunk/js/code.php
r628684 r628721 63 63 //GET PARENT HEIGHT TO SET AFTER CLOSE 64 64 if($j("#note"+id).css("display")=="none") 65 { 65 66 h = $j("#note"+id).parent("div").css("height"); 67 w = $j("#note"+id).parent("div").css("width"); 68 } 66 69 67 70 $j("#note"+id).slideToggle(500); … … 94 97 $j("#message_"+postid).html("sending..."); 95 98 $j("#message_"+postid).css("display","inline-block"); 96 ta = tinyMCE. activeEditor.getContent();99 ta = tinyMCE.get('ta_postit_'+postid).getContent(); 97 100 $j.ajax({ 98 101 type: "POST", -
wp-postit/trunk/postit.php
r628684 r628721 59 59 if (sizeof($myrows) == 1) { 60 60 $t = md5(uniqid($username . rand(), true)); 61 print $sql; 61 62 $sql = "update " . $table_name . " set text = '" . $_POST["postittext"] . "',token = '" . $t . "' where username = '" . $username . "' and identifier = '" . $postid . "'"; 62 63 } -
wp-postit/trunk/readme.txt
r628686 r628721 2 2 Contributors: quartz 3 3 Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_donations&business=smmqam%40hotmail%2ecom&lc=CA&no_note=0¤cy_code=CAD&bn=PP%2dDonationsBF%3abtn_donate_LG%2egif%3aNonHostedGuest 4 Tags: post-it,memo,pad,help ,personnal,notes4 Tags: post-it,memo,pad,help 5 5 Requires at least: 3.0 6 6 Tested up to: 3.2.1 7 7 Stable tag: 1.0 8 8 9 This plugin allows p ersonnal notes,memopad or help mode.9 This plugin allows postit 10 10 11 11 == Description == -
wp-postit/trunk/wp_postit.php
r628684 r628721 50 50 { 51 51 global $current_user, $wpdb; 52 52 $rows = null; 53 53 if ($current_user->user_login != "" || (get_option("wp_postit_help_mode") == "public" && get_option("wp_postit_type") == "help")) { 54 54 $table_name = $wpdb->prefix . "postits";
Note: See TracChangeset
for help on using the changeset viewer.