GitLab now enforces expiry dates on tokens that originally had no set expiration date. Those tokens were given an expiration date of one year later. Please review your personal access tokens, project access tokens, and group access tokens to ensure you are aware of upcoming expirations. Administrators of GitLab can find more information on how to identify and mitigate interruption in our documentation.
return$this->t3db->fetchAll("select * from tt_news where deleted=0 and ext_url>'' order by uid ASC");
return$this->t3db->fetchAll("select * from tt_news where deleted=0 and hidden=0 and ext_url>'' order by uid ASC");
}
publicfunctionfindAllArticles(){
return$this->t3db->fetchAll("select * from tt_news where deleted=0 and ext_url='' order by uid ASC");
return$this->t3db->fetchAll("select * from tt_news where deleted=0 and hidden=0 and ext_url='' order by uid ASC");
}
publicfunctionfindAllForeignUidForNewsCat($uid){
...
...
@@ -608,11 +607,11 @@ class Typo3DB {
publicfunctionfindAllCalendarEvents(){
return$this->t3db->fetchAll("select * from tx_cal_event where deleted=0 order by uid ASC");
return$this->t3db->fetchAll("select * from tx_cal_event where deleted=0 and hidden=0 order by uid ASC");
}
publicfunctionfindAllContents(){
return$this->t3db->fetchAll("select * from tt_content where deleted=0 and header>'' and bodytext>'' and (ctype='text' or ctype='textpic') order by uid ASC");
return$this->t3db->fetchAll("select * from tt_content where deleted=0 and hidden=0 and header>'' and bodytext>'' and (ctype='text' or ctype='textpic') order by uid ASC");