Plugin Directory

Changeset 344392


Ignore:
Timestamp:
02/12/2011 02:43:40 AM (15 years ago)
Author:
burtadem
Message:
 
Location:
wordpress-title-cloud/trunk
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • wordpress-title-cloud/trunk/readme.txt

    r344389 r344392  
    55Requires at least: 3.0
    66Tested up to: 3.0.5
    7 Stable tag: 0.9.7
     7Stable tag: 0.9.8
    88
    99Act as a tag cloud but instead of showing tag, it shows the title of pages.
     
    3232
    3333== Changelog ==
     34
     35= 0.9.8 =
     36*Fixed Bug from 0.9.7
    3437
    3538= 0.9.7 =
  • wordpress-title-cloud/trunk/wordpress-title-cloud.php

    r344389 r344392  
    4747         function cloud_visit($id){
    4848            $visits=get_post_meta($id, "bezoekers",true);
     49            $oStyle= json_decode(get_option('wp-titlecloud_styles'));   
    4950            if(  strlen(trim($visits))>0){
    5051            if( $visits==0){
     
    5455            }
    5556            }else{
    56                     if($oStyle->auto==1){   
     57                    if($oStyle->auto=='1'){
    5758                    add_post_meta($id, "bezoekers", 1);
    5859                    }else{
  • wordpress-title-cloud/trunk/wp-titlecloud.php

    r344389 r344392  
    22/**
    33 * @package Wordpress Title Cloud
    4  * @version 0.9.7
     4 * @version 0.9.8
    55 */
    66/*
     
    99Description: An Idea of Displaying texts as tag cloud using your page titles.
    1010Author: Burt Adem
    11 Version: 0.9.7
     11Version: 0.9.8
    1212Author URI: http://burtadem.com/
    1313*/
  • wordpress-title-cloud/trunk/wp-titlecloudadmin.php

    r344389 r344392  
    1212            $aProperty['smallest']=$_POST['txtSmallest'];
    1313            $aProperty['largest']=$_POST['txtLargest'];
    14             $aProperty['auto']==$_POST['ddlAuto'];
     14            $aProperty['auto']=$_POST['ddlAuto'];
    1515           
    1616            update_option('wp-titlecloud_area', $area);
Note: See TracChangeset for help on using the changeset viewer.