Plugin Directory

Changeset 1382177


Ignore:
Timestamp:
03/30/2016 06:17:56 PM (10 years ago)
Author:
NewMediaOne
Message:

Tagging 2.2.1

Location:
geodigs
Files:
4 edited
21 copied

Legend:

Unmodified
Added
Removed
  • geodigs/tags/2.2.0/geodigs.php

    r1381507 r1382177  
    3232use \GeoDigs\Router as Router;
    3333
    34 $gd_show_debug = true;
     34$gd_show_debug = false;
    3535if ( $gd_show_debug ) {
    3636    ini_set( 'display_errors', 'On' );
  • geodigs/tags/2.2.1/User.php

    r1381507 r1382177  
    159159     */
    160160    static function has_favorite( $listing_id ) {
    161         if ( isset( $_SESSION['gd_user'] ) ) {
     161        if ( isset( $_SESSION['gd_user']->favorites->listings ) ) {
    162162            foreach ( $_SESSION['gd_user']->favorites->listings as $listing ) {
    163163                if ( $listing->id == $listing_id ) {
  • geodigs/tags/2.2.1/geodigs.php

    r1381507 r1382177  
    3232use \GeoDigs\Router as Router;
    3333
    34 $gd_show_debug = true;
     34$gd_show_debug = false;
    3535if ( $gd_show_debug ) {
    3636    ini_set( 'display_errors', 'On' );
  • geodigs/tags/2.2.1/readme.txt

    r1381507 r1382177  
    133133= 2.2.0 =
    134134* Added ability to create users from Admin area
     135
     136= 2.2.1 =
     137* Bug fixes
  • geodigs/trunk/User.php

    r1381507 r1382177  
    159159     */
    160160    static function has_favorite( $listing_id ) {
    161         if ( isset( $_SESSION['gd_user'] ) ) {
     161        if ( isset( $_SESSION['gd_user']->favorites->listings ) ) {
    162162            foreach ( $_SESSION['gd_user']->favorites->listings as $listing ) {
    163163                if ( $listing->id == $listing_id ) {
  • geodigs/trunk/geodigs.php

    r1381507 r1382177  
    3232use \GeoDigs\Router as Router;
    3333
    34 $gd_show_debug = true;
     34$gd_show_debug = false;
    3535if ( $gd_show_debug ) {
    3636    ini_set( 'display_errors', 'On' );
  • geodigs/trunk/readme.txt

    r1381507 r1382177  
    133133= 2.2.0 =
    134134* Added ability to create users from Admin area
     135
     136= 2.2.1 =
     137* Bug fixes
Note: See TracChangeset for help on using the changeset viewer.