Plugin Directory

Changeset 137830


Ignore:
Timestamp:
07/22/2009 10:33:34 AM (17 years ago)
Author:
Hackadelic
Message:

0.3

Location:
hackadelic-codification/trunk
Files:
2 added
3 edited

Legend:

Unmodified
Added
Removed
  • hackadelic-codification/trunk/hackadelic-codification-editkit.php

    r136760 r137830  
    22/*
    33Plugin Name: Hackadelic Codification Editing Kit
    4 Version: 0.2
     4Version: 0.3
    55Plugin URI: http://hackadelic.com/solutions/wordpress/codification
    66Description: Tools to enrich posts and pages with specific JavaScript and CSS code. Perfect for front-end developers to quickly setup demos in their blog.
     
    4848        //die;
    4949        foreach (array('js', 'css') as $lang):
    50             $this->checkNonce($lang);
     50            if (!$this->checkNonce($lang) ) continue;
    5151            foreach (array('code', 'files') as $type):
    5252                $key = $lang . $type;
     
    5858            endforeach;
    5959        endforeach;
     60        return $entryID;
    6061    }
    6162
     
    9798        $nonce = $_POST[$nonceName];
    9899        $ok = wp_verify_nonce($nonce, $context);
    99         if (!$ok) wp_die("Invalid operation context");
     100        //if (!$ok) wp_die("Invalid operation context");
     101        return $ok;
    100102    }
    101103}
  • hackadelic-codification/trunk/hackadelic-codification.php

    r136760 r137830  
    22/*
    33Plugin Name: Hackadelic Codification
    4 Version: 0.2
     4Version: 0.3
    55Plugin URI: http://hackadelic.com/solutions/wordpress/codification
    66Description: Tools to enrich posts and pages with specific JavaScript and CSS code. Perfect for front-end developers to quickly setup demos in their blog.
  • hackadelic-codification/trunk/readme.txt

    r136760 r137830  
    44Tags: content, page, Post, admin, AJAX, javascript, CSS, code
    55Requires at least: 2.7
    6 Tested up to: 2.8.1
     6Tested up to: 2.8.2
    77Stable tag: trunk
    88
     
    1818
    1919== Changelog ==
     20
     21#### 0.3
     22
     23* Fixed a glitch that interfered with editing of existing comments in the dashboard.
     24* Fixed a deployment/packaging error (a file was missing).
     25* Verified compatibility with WP 2.8.2
    2026
    2127#### 0.2
Note: See TracChangeset for help on using the changeset viewer.