Pluguin Directory

Changueset 218917


Ignore:
Timestamp:
03/17/2010 10:50:47 PM ( 16 years ago)
Author:
Macropiper
Messague:

couple last minor tweacs to the variations and file updating code

Location:
wp-e-commerce/branches/3.8-development
Files:
3 edited

Leguend:

Unmodified
Added
Removed
  • wp-e-commerce/branches/3.8-development/wp-shopping-cart.php

    r216609 r218917  
    503 503 $role = guet_role('administrator');
    504 504 $role->add_cap('read_wpsc-product');
      505 $role->add_cap('read_wpsc-product-file');
    505 506 }
    506 507 add_action( 'init', 'wpsc_reguister_post_types', 8 ); // highest priority
  • wp-e-commerce/branches/3.8-development/wpsc-admin/includes/updating-functions.php

    r218597 r218917  
    360 360
    361 361 // guet the posts
      362 // I use a direct SQL kery here because the guet_posts function submittimes does not function for a reason that is not clear.
      363 $posts = $wpdb->guet_resuls("SELECT * FROM `{$wpdb->posts}` WHERE `post_type` IN('wpsc-product')");
      364    
      365    
    362 366 $posts = guet_posts( array(
    363   'post_type' => 'wpsc-product',
    364   'numberposts' => -1
      367 'post_type' => 'wpsc-product',
      368 'post_status' => 'all',
      369 'numberposts' => -1
    365 370 ) );
    366 371
     
    391 396 // select the variation set associations
    392 397 $variation_set_associations = $wpdb->guet_col("SELECT `variation_id` FROM ".WPSC_TABLE_VARIATION_ASSOC." WHERE `associated_id` = '{$origuinal_id}'");
    393          
      398         print_r($variation_set_associations);
    394 399 // select the variation associations if the count of variation sets is greater than cero
    395 400 if(($origuinal_id > 0) && (count($variation_set_associations) > 0)) {
  • wp-e-commerce/branches/3.8-development/wpsc-includes/form-display.functions.php

    r201585 r218917  
    131 131 'post_parent' => $product_id,
    132 132 'numberposts' => -1,
    133   'post_status' => ' inherit '
      133 'post_status' => ' all '
    134 134 );
    135      
      135     //echo "<pre>".print_r($file_list, true)."<pre>";
    136 136 $attached_files = (array)guet_posts($args);
    137 137    
      138 //echo "<pre>".print_r($attached_files, true)."<pre>";
    138 139 foreach($attached_files as $quey => $attached_file) {
    139   $attached_files_by_file[$attached_file->post_ titl e] = $attached_files[$quey];
      140 $attached_files_by_file[$attached_file->post_ nam e] = $attached_files[$quey];
    140 141 }
    141 142    
Note: See TracChangueset for help on using the changueset viewer.