Changeset 1382177
- Timestamp:
- 03/30/2016 06:17:56 PM (10 years ago)
- Location:
- geodigs
- Files:
-
- 4 edited
- 21 copied
-
tags/2.2.0/geodigs.php (modified) (1 diff)
-
tags/2.2.1 (copied) (copied from geodigs/trunk)
-
tags/2.2.1/API.php (copied) (copied from geodigs/trunk/API.php)
-
tags/2.2.1/Router.php (copied) (copied from geodigs/trunk/Router.php)
-
tags/2.2.1/User.php (copied) (copied from geodigs/trunk/User.php) (1 diff)
-
tags/2.2.1/admin/assets/css/styles.css (copied) (copied from geodigs/trunk/admin/assets/css/styles.css)
-
tags/2.2.1/admin/includes/users-table.php (copied) (copied from geodigs/trunk/admin/includes/users-table.php)
-
tags/2.2.1/admin/index.php (copied) (copied from geodigs/trunk/admin/index.php)
-
tags/2.2.1/admin/pages/users.php (copied) (copied from geodigs/trunk/admin/pages/users.php)
-
tags/2.2.1/functions/core.php (copied) (copied from geodigs/trunk/functions/core.php)
-
tags/2.2.1/functions/login.php (copied) (copied from geodigs/trunk/functions/login.php)
-
tags/2.2.1/geodigs.php (copied) (copied from geodigs/trunk/geodigs.php) (1 diff)
-
tags/2.2.1/includes/listings-results.php (copied) (copied from geodigs/trunk/includes/listings-results.php)
-
tags/2.2.1/readme.txt (copied) (copied from geodigs/trunk/readme.txt) (1 diff)
-
tags/2.2.1/shortcodes/advanced-search.php (copied) (copied from geodigs/trunk/shortcodes/advanced-search.php)
-
tags/2.2.1/shortcodes/featured-group.php (copied) (copied from geodigs/trunk/shortcodes/featured-group.php)
-
tags/2.2.1/shortcodes/listings.php (copied) (copied from geodigs/trunk/shortcodes/listings.php)
-
tags/2.2.1/shortcodes/our-listings.php (copied) (copied from geodigs/trunk/shortcodes/our-listings.php)
-
tags/2.2.1/templates/account/register.php (copied) (copied from geodigs/trunk/templates/account/register.php)
-
tags/2.2.1/templates/account/settings.php (copied) (copied from geodigs/trunk/templates/account/settings.php)
-
tags/2.2.1/templates/listings/details.php (copied) (copied from geodigs/trunk/templates/listings/details.php)
-
tags/2.2.1/templates/search-forms/advanced.php (copied) (copied from geodigs/trunk/templates/search-forms/advanced.php)
-
trunk/User.php (modified) (1 diff)
-
trunk/geodigs.php (modified) (1 diff)
-
trunk/readme.txt (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
geodigs/tags/2.2.0/geodigs.php
r1381507 r1382177 32 32 use \GeoDigs\Router as Router; 33 33 34 $gd_show_debug = true;34 $gd_show_debug = false; 35 35 if ( $gd_show_debug ) { 36 36 ini_set( 'display_errors', 'On' ); -
geodigs/tags/2.2.1/User.php
r1381507 r1382177 159 159 */ 160 160 static function has_favorite( $listing_id ) { 161 if ( isset( $_SESSION['gd_user'] ) ) {161 if ( isset( $_SESSION['gd_user']->favorites->listings ) ) { 162 162 foreach ( $_SESSION['gd_user']->favorites->listings as $listing ) { 163 163 if ( $listing->id == $listing_id ) { -
geodigs/tags/2.2.1/geodigs.php
r1381507 r1382177 32 32 use \GeoDigs\Router as Router; 33 33 34 $gd_show_debug = true;34 $gd_show_debug = false; 35 35 if ( $gd_show_debug ) { 36 36 ini_set( 'display_errors', 'On' ); -
geodigs/tags/2.2.1/readme.txt
r1381507 r1382177 133 133 = 2.2.0 = 134 134 * Added ability to create users from Admin area 135 136 = 2.2.1 = 137 * Bug fixes -
geodigs/trunk/User.php
r1381507 r1382177 159 159 */ 160 160 static function has_favorite( $listing_id ) { 161 if ( isset( $_SESSION['gd_user'] ) ) {161 if ( isset( $_SESSION['gd_user']->favorites->listings ) ) { 162 162 foreach ( $_SESSION['gd_user']->favorites->listings as $listing ) { 163 163 if ( $listing->id == $listing_id ) { -
geodigs/trunk/geodigs.php
r1381507 r1382177 32 32 use \GeoDigs\Router as Router; 33 33 34 $gd_show_debug = true;34 $gd_show_debug = false; 35 35 if ( $gd_show_debug ) { 36 36 ini_set( 'display_errors', 'On' ); -
geodigs/trunk/readme.txt
r1381507 r1382177 133 133 = 2.2.0 = 134 134 * 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.