summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: aeeac65)
raw | patch | inline | side by side (parent: aeeac65)
author | cajus <cajus@594d385d-05f5-0310-b6e9-bd551577e9d8> | |
Thu, 20 Aug 2009 14:06:39 +0000 (14:06 +0000) | ||
committer | cajus <cajus@594d385d-05f5-0310-b6e9-bd551577e9d8> | |
Thu, 20 Aug 2009 14:06:39 +0000 (14:06 +0000) |
git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@14096 594d385d-05f5-0310-b6e9-bd551577e9d8
gosa-core/include/class_listing.inc | patch | blob | history |
index 96b27f9ad136a6a82872ca26867372be40c1a23e..796793c8b3efe637232d8a02e25cff5ffd2fe317 100644 (file)
// Watch out for filters and prepare to execute them
$data= $this->processElementFilter($data, $config, $row);
+ // Replace all non replaced %{...} instances because they
+ // are non resolved attributes or filters
+ $data= preg_replace('/%{[^}]+}/', ' ', $data);
+
return $data;
}