Plugin Directory

Changeset 935282


Ignore:
Timestamp:
06/19/2014 06:05:34 PM (12 years ago)
Author:
sanderonline
Message:

Little bugfix

Location:
oypie/trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • oypie/trunk/oypie.php

    r934667 r935282  
    44Plugin URI: http://sanderonlinemedia.nl/oypie;
    55Description: This plugin is for photographers who use the service 'OYPO'. In this plugin you can generate shortcodes for your pages and posts. The shortcode generator can you find under 'Tools' > 'SanderOnline'.
    6 Version: 0.8
     6Version: 0.9
    77Author: SanderOnline Media / Sander Dijkstra
    88Author URI: http://sander-dijkstra.nl/
  • oypie/trunk/readme.txt

    r934667 r935282  
    3232== Changelog ==
    3333
     34= 0.9 =
     35Bugfix for color function
     36
    3437= 0.8 =
    3538Added color function and bugfix for whitelabel store
  • oypie/trunk/shortcode.php

    r934667 r935282  
    6767        $colors = explode(' ', $colors);
    6868   
    69         $out_colors['1'] = "var kleur1='".$colors[0]."';
     69        $out_colors['1'] = "var kleur1='#".$colors[0]."';
    7070        ";
    71         $out_colors['2'] = "var kleur2='".$colors[1]."';
     71        $out_colors['2'] = "var kleur2='#".$colors[1]."';
    7272        ";
    73         $out_colors['3'] = "var kleur3='".$colors[2]."';
     73        $out_colors['3'] = "var kleur3='#".$colors[2]."';
    7474        ";
    75         $out_colors['4'] = "var kleur4='".$colors[3]."';
     75        $out_colors['4'] = "var kleur4='#".$colors[3]."';
    7676        ";
    77         $out_colors['5'] = "var kleur5='".$colors[4]."';
     77        $out_colors['5'] = "var kleur5='#".$colors[4]."';
    7878        ";
    79         $out_colors['6'] = "var kleur6='".$colors[5]."';
     79        $out_colors['6'] = "var kleur6='#".$colors[5]."';
    8080        ";
    8181       
Note: See TracChangeset for help on using the changeset viewer.