Plugin Directory

Changeset 1015052


Ignore:
Timestamp:
10/28/2014 02:25:39 AM (11 years ago)
Author:
MicahBlu
Message:

Bug fixes

Location:
rsvp-me/trunk
Files:
6 edited

Legend:

Unmodified
Added
Removed
  • rsvp-me/trunk/includes/rsvpme_events_post_type.php

    r959046 r1015052  
    340340    $content = $foomanchu->render($template, $event, false);
    341341
    342     die($content);
    343342    return $content;
    344343}
  • rsvp-me/trunk/includes/rsvpme_functions.php

    r959046 r1015052  
    220220    $options[] = $calendar_options;
    221221
    222 
    223222    // load values or set defaults
    224 
    225223    for($i=0; $i < count($options); $i++){
    226224        for($j = 0; $j < count($options[$i]['fields']); $j++){         
  • rsvp-me/trunk/js/rsvp_me.js

    r959046 r1015052  
    1010}
    1111var rsvpMe; // put our namespace in global scope
     12console.log('hi');
    1213(function($){
    1314
     
    250251
    251252    function renderTemplate(tmpl, obj){
     253        console.log('asdfasdfasdfsdf');
     254        console.log(tmpl);
     255
    252256        var reg,
    253             maxattempts = 50,
    254             i = 0;
     257              maxattempts = 50,
     258              i = 0;
    255259
    256260        var ifmatches = tmpl.match(/\[{2}#if(.[^\]]+)\]\](.*)\[{2}\/if\]{2}/gmi);
     
    295299
    296300        tmpl = tmpl.replace(/\[\[.+\]\]/g, '');
    297 
    298301        return tmpl;
    299 
    300302    }
    301 
    302 
    303 
    304303
    305304    function stripslashes (str) {
  • rsvp-me/trunk/readme.txt

    r935808 r1015052  
    44Tags: rsvp plugin, rsvp widget, event, rsvp events, rsvp calendar, Events, Event Calendar, Event Widget, widget, Event, Event plugin, organize, plan, venue, catering, planning, planner, organization, wedding, guestlist, reserve, reservations, reservation, byob
    55Requires at least: 2.0.2
    6 Tested up to: 3.8.2
    7 Stable tag: 1.9.8
     6Tested up to: 4.0
     7Stable tag: 1.9.9
    88
    99== Description ==
  • rsvp-me/trunk/rsvpme.php

    r959046 r1015052  
    44Plugin URI: http://www.micahblu.com/products/rsvp-me
    55Description: A Robust RSVP plugin
    6 Version: 1.9.8
     6Version: 1.9.9
    77Author: Micah Blu
    88Author URI: http://www.micahblu.com
     
    1010*/
    1111
    12 define('RSVP_ME_VERSION', '1.9.7');
     12define('RSVP_ME_VERSION', '1.9.9');
    1313
    1414define('RSVP_ME_FILE_PATH', dirname(__FILE__));
  • rsvp-me/trunk/vendors/foomanchu.php

    r959046 r1015052  
    4141     */
    4242    public function __construct($options = array()){
     43
    4344        $this->PartialsPath = isset($options['partials_path']) ? $options['partials_path'] : dirname(__FILE__);
    4445        $this->Ext = isset($options['template_ext']) ? $options['template_ext'] : 'fmc';
     
    7677                        if($condition == $field) $match = true;
    7778                    }
    78                     echo $statements[0][$i];
     79                    //echo $statements[0][$i];
    7980                    if($match){
    8081                        $template = str_replace($statements[0][$i], $statements[3][$i], $template);
Note: See TracChangeset for help on using the changeset viewer.