Plugin Directory

Changeset 965721


Ignore:
Timestamp:
08/14/2014 01:05:11 PM (12 years ago)
Author:
Code-Ninja
Message:

Fixing Glitch in php 5.5

Location:
ninja-notes/trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • ninja-notes/trunk/ninja-notes.php

    r546975 r965721  
    1 <?
     1<?php
    22/*
    33Plugin Name: Ninja Notes
     
    7979                        type: "POST",
    8080                        data: "&id=" + selected,
    81                         url: "<? echo plugins_url('ninja-notes/notes.php');?>",
     81                        url: "<?php echo plugins_url('ninja-notes/notes.php');?>",
    8282                        success: function(msg){
    8383                                        document.getElementById("nnnotes").value = msg;
     
    8989                type: "POST",
    9090                data: "&id=" + selected,
    91                 url: "<? echo plugins_url('ninja-notes/notes.php');?>",
     91                url: "<?php echo plugins_url('ninja-notes/notes.php');?>",
    9292                success: function(msg){
    9393                        document.getElementById("nnnotes").value = msg;
     
    127127                type: "POST",
    128128                data: "&id=" + selected,
    129             url: "<? echo plugins_url('ninja-notes/notes.php');?>",
     129            url: "<?php echo plugins_url('ninja-notes/notes.php');?>",
    130130                    success: function(msg){
    131131                                document.getElementById("nnnotes").value = msg;
     
    137137        type: "POST",
    138138        data: "&id=" + selected,
    139         url: "<? echo plugins_url('ninja-notes/notes.php');?>",
     139        url: "<?php echo plugins_url('ninja-notes/notes.php');?>",
    140140        success: function(msg){
    141141            document.getElementById("nnnotes").value = msg;
     
    148148<h2>Ninja Notes by <a href="http://code-ninja.co.uk">CodeNinja</a></h2>
    149149<hr/>
    150 <form method="post" action="<? echo plugins_url('ninja-notes/notes.php');?>">
     150<form method="post" action="<?php echo plugins_url('ninja-notes/notes.php');?>">
    151151<select name="nnselect" id="nnselect">
    152152<?php
     
    169169</form>
    170170</div>
    171 <?
     171<?php
    172172}
    173173
     
    194194</p>
    195195</div>
    196 <?
     196<?php
    197197}
    198198
  • ninja-notes/trunk/notes.php

    r540043 r965721  
    1 <?
     1<?php
    22include_once($_SERVER['DOCUMENT_ROOT'].'/wp-load.php' );
    33global $wpdb;
  • ninja-notes/trunk/readme.txt

    r943309 r965721  
    33Tags: notes, memo, notepad
    44Requires at least:
    5 Tested up to: 3.9.1
    6 Stable tag: 1.1.1
     5Tested up to: 3.9.2
     6Stable tag: 1.1.2
    77License: GPLv2 or later
    88License URI: http://www.gnu.org/licenses/gpl-2.0.html 
     
    2121
    2222== Changelog ==
     231.1.2 Fixed Glitch for PHP V 5.5
     24
    23251.1.1 Tested & Tweaked for Latest version of Wordpress
    2426
Note: See TracChangeset for help on using the changeset viewer.