Changeset 1103384
- Timestamp:
- 03/02/2015 03:51:09 PM (11 years ago)
- Location:
- ultimate-member-wp-user-frontend-addon
- Files:
-
- 20 added
- 2 edited
-
tags/1.1.2 (added)
-
tags/1.1.2/actions.php (added)
-
tags/1.1.2/admin (added)
-
tags/1.1.2/admin/options.php (added)
-
tags/1.1.2/css (added)
-
tags/1.1.2/css/style.css (added)
-
tags/1.1.2/lang (added)
-
tags/1.1.2/lang/ufa-en_EN.mo (added)
-
tags/1.1.2/lang/ufa-en_EN.po (added)
-
tags/1.1.2/lang/ufa-pl_PL.mo (added)
-
tags/1.1.2/lang/ufa-pl_PL.po (added)
-
tags/1.1.2/lib (added)
-
tags/1.1.2/lib/class.settings-api.php (added)
-
tags/1.1.2/readme.txt (added)
-
tags/1.1.2/screenshot-1.jpg (added)
-
tags/1.1.2/screenshot-2.jpg (added)
-
tags/1.1.2/screenshot-3.jpg (added)
-
tags/1.1.2/screenshot-4.jpg (added)
-
tags/1.1.2/ufa.php (added)
-
tags/1.1.2/user-dashboard.php (added)
-
trunk/readme.txt (modified) (2 diffs)
-
trunk/ufa.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
ultimate-member-wp-user-frontend-addon/trunk/readme.txt
r1103312 r1103384 1 === Ultimate Member + WP User Frontend - Addon ===1 === Ultimate Member + WP User Frontend - Addon === 2 2 Contributors: trasek 3 3 Tags: ultimate member, wp user frontend, ultimate member addon 4 4 Requires at least: 4.1 5 5 Tested up to: 4.1.1 6 Stable tag: 1.1. 16 Stable tag: 1.1.2 7 7 License: GPLv2 8 8 … … 28 28 29 29 == Changelog == 30 = 1.1.2 = 31 - Check if ultimate member it's active (wp-admin blank page) 32 30 33 = 1.1.1 = 31 34 - small bug repair -
ultimate-member-wp-user-frontend-addon/trunk/ufa.php
r1103312 r1103384 5 5 * Plugin URI: http://devwp.pl/ultimate-member-wp-user-frontend-addon/ 6 6 * Description: Integration of "Ultimate Member" + "WP User Fronted" in user profiles 7 * Version: 1.1. 17 * Version: 1.1.2 8 8 * Author: DevWP 9 9 * Author URI: http://devwp.pl … … 13 13 require_once dirname( __FILE__ ) . '/lib/class.settings-api.php'; 14 14 } 15 require_once 'admin/options.php'; 16 require_once 'user-dashboard.php'; 17 require_once 'actions.php'; 18 15 include_once( ABSPATH . 'wp-admin/includes/plugin.php' ); 16 if(is_plugin_active('ultimate-member')){ 17 require_once 'admin/options.php'; 18 require_once 'user-dashboard.php'; 19 require_once 'actions.php'; 20 } 19 21 function scripts(){ 20 22 wp_enqueue_style( 'style-ufa', plugins_url('css/style.css', __FILE__) );
Note: See TracChangeset
for help on using the changeset viewer.