Changeset 4887

Show
Ignore:
Timestamp:
01/08/07 14:19:13 (2 years ago)
Author:
bergie
Message:

Committing various small fixes

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/src/build/packageMidCOM.php

    r4731 r4887  
    135135                { 
    136136                        chdir($curr_dir); 
    137                         echo implode($out); 
     137                        if (!is_null($out)) 
     138                        { 
     139                        echo implode($out); 
     140            } 
    138141                        die ("Packagefile did not validate! Exiting."); 
    139142                } 
  • trunk/src/net.nemein.calendar/handler/list.php

    r4841 r4887  
    3636     */ 
    3737    var $_month; 
     38     
     39    /** 
     40     * Calendar display widget 
     41     * 
     42     * @var org_openpsa_calendarwidget_month 
     43     * @access private 
     44     */ 
     45    var $_calendar; 
    3846     
    3947    /** 
     
    465473        } 
    466474         
    467         // Prevent the robots from ending in an "endless" parsin cycle 
     475        // Prevent the robots from ending in an "endless" parsing cycle 
    468476        $_MIDCOM->add_meta_head 
    469477        ( 
  • trunk/src/net.nemein.discussion/style/view-thread-item.php

    r4680 r4887  
    55$view =& $view_data['view_post']; 
    66 
    7 // TODO: 1.7 support is only temporary, I'd rather drop it as soon as 1.8 goes somehting like RC. 
    8 if (version_compare(mgd_version(), '1.8.0alpha1', '>=')) 
    9 
    10     $posttime = $post->metadata->published; 
    11 
    12 else 
    13 
    14     $posttime = $post->created; 
    15 
     7$posttime = $post->metadata->published; 
    168?> 
    179 
  • trunk/src/org.openpsa.reports/viewer.php

    r4794 r4887  
    2626    function org_openpsa_reports_viewer($topic, $config) 
    2727    { 
    28         debug_push_class(__CLASS__, __FUNCTION__); 
    2928        parent::midcom_baseclasses_components_request($topic, $config); 
    30  
     29    } 
     30 
     31    function _on_initialize() 
     32    { 
    3133        // Always run in uncached mode 
    3234        $_MIDCOM->cache->content->no_cache(); 
    33  
     35        debug_push_class(__CLASS__, __FUNCTION__); 
    3436        $components = org_openpsa_reports_viewer::available_component_generators(); 
    3537        foreach ($components as $component => $loc)