Proyectos de Subversion LeadersLinked - Antes de SPA

Rev

Rev 2105 | Rev 2146 | Ir a la última revisión | Mostrar el archivo completo | | | Autoría | Ultima modificación | Ver Log |

Rev 2105 Rev 2145
Línea 68... Línea 68...
68
    public function fetchOneByUuid($uuid)
68
    public function fetchOneByUuid($uuid)
69
    {
69
    {
70
        $prototype = new Topic();
70
        $prototype = new Topic();
71
        $select = $this->sql->select(self::_TABLE);
71
        $select = $this->sql->select(self::_TABLE);
72
        $select->where->equalTo('uuid', $uuid);
72
        $select->where->equalTo('uuid', $uuid);
-
 
73
        $select->where->notEqualTo('status', Topic::STATUS_DELETE);
Línea 73... Línea 74...
73
        
74
        
74
        return $this->executeFetchOneObject($select, $prototype);
75
        return $this->executeFetchOneObject($select, $prototype);
Línea 75... Línea 76...
75
    }
76
    }