Changeset 5eff4f9ad6bdfcce8faf7b93651c1e3c0c6d9ba7

Show
Ignore:
Timestamp:
11/01/11 22:39:38 (7 months ago)
Author:
xemle <xemle@phtagr.org>
Children:
8c7bdaacfc5840aa3b20168ffc12b8546f4585f9
Parents:
3ec95e9880d43327330fd0a12ac26865aadd5830, eb98985c42c460eefec3d0bb400ee3aa64c4476b
git-committer:
xemle <xemle@phtagr.org> / 2011-11-01T22:39:38Z+0100
Message:

Merge branch 'dev' of  git://github.com/xemle/phtagr into dev

Location:
controllers
Files:
2 modified

Legend:

Unmodified
Added
Removed
  • controllers/components/file_cache.php

    re7234c1 reb98985  
    109109        $filename = $folder->addPathElement($cacheDir, $file); 
    110110        unlink($filename); 
    111         clearstatcache(); 
    112111      } 
     112      clearstatcache(); 
    113113    } else { 
    114114      Logger::trace("No cached files found for image $mediaId"); 
  • controllers/explorer_controller.php

    r4dbdd46 r3ec95e9  
    8080      if ($type == 'tag' || $type == 'category') { 
    8181        $field = Inflector::camelize($type); 
    82         $value = $this->data[$field]['name']; 
     82        $value = $this->data[$field]['names']; 
    8383      } else { 
    8484        $value = $this->data['Location'][$type]; 
     
    222222    $isNegated = false; 
    223223    $normalized = $value; 
    224     if ($value && $value[0] = '-') { 
     224    if ($value && $value[0] == '-') { 
    225225      $normalized = trim(substr($value, 1)); 
    226226      $isNegated = true;