Assembla home | Assembla project page
 

Changeset 68

Show
Ignore:
Timestamp:
10/23/06 12:41:05 (2 years ago)
Author:
moensch
Message:

Importing com_mls_seatmap 0.0.3a into trunk

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/com_mls_seatmap/mls_seatmap.class.php

    r62 r68  
    195195        function getStatus($seatid = 0) { 
    196196                global $database, $mosConfig_offset, $my; 
    197                 $seatid = @$this->id ? $this->id : $seatid; 
     197                if($this) { 
     198                        $seatid = @$this->id ? $this->id : $seatid; 
     199                } 
    198200                $database->setQuery( "SELECT * FROM `#__mls_seatmap_room_elements` WHERE `id`='".$seatid."'" ); 
    199201                $seat = $database->loadObjectList(); 
  • trunk/com_mls_seatmap/mls_seatmap.xml

    r66 r68  
    33        <name>mls_seatmap</name> 
    44        <package time_limit="150">myLANsite</package> 
    5         <creationDate>22/03/2005</creationDate> 
     5        <creationDate>16/04/2005</creationDate> 
    66        <author>Samuel Suter</author> 
    77        <copyright>This component is Free Software released under the GNU/GPL License. (c) 2005 Samuel Suter</copyright> 
    88        <authorEmail>samuel.suter@gmx.ch</authorEmail> 
    99        <authorUrl>http://www.mylansite.org/</authorUrl> 
    10         <version>0.0.3</version> 
     10        <version>0.0.3a</version> 
    1111        <description>myLANsite Seatmap</description> 
    1212        <files> 
  • trunk/com_mls_seatmap/version

    r66 r68  
    1 0.0.3 
     10.0.3a 
  • trunk/com_mls_seatmap/versions.php

    r66 r68  
    55$versions[2] = "0.0.2a"; 
    66$versions[3] = "0.0.3"; 
     7$versions[4] = "0.0.3a"; 
    78?>