Changeset 1499251
- Timestamp:
- 09/20/2016 10:15:25 PM (9 years ago)
- Location:
- wp-ldp/trunk
- Files:
-
- 2 edited
-
wpldp-settings.php (modified) (2 diffs)
-
wpldp.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
wp-ldp/trunk/wpldp-settings.php
r1499248 r1499251 111 111 } else { 112 112 $existing_term = get_term_by( 'slug', $term, 'ldp_container' ); 113 if ( $term == 'actor' ) {114 var_dump( $existing_term );115 }116 113 $updated_term = wp_update_term( 117 114 $existing_term->term_id, … … 127 124 128 125 if ( !empty( $term_id ) ) { 129 if ( $term == 'actor' ) {130 var_dump( 'Actor term ID:' . $term_id );131 }132 126 $term_meta = get_option("ldp_container_$term_id"); 133 127 if (!is_array($term_meta)) { -
wp-ldp/trunk/wpldp.php
r1499248 r1499251 5 5 * Description: This is a plugin which aims to emulate the default caracteristics of a Linked Data Platform compatible server 6 6 * Text Domain: wpldp 7 * Version: 1.0. 57 * Version: 1.0.6 8 8 * Author: Sylvain LE BON, Benoit ALESSANDRONI 9 9 * Author URI: http://www.happy-dev.fr/team/sylvain, http://benoit-alessandroni.fr/ … … 30 30 * The current plugin version number 31 31 */ 32 protected static $version_number = '1.0. 5';32 protected static $version_number = '1.0.6'; 33 33 34 34 /**
Note: See TracChangeset
for help on using the changeset viewer.