diff options
author | ewinslow <ewinslow@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2011-02-11 00:14:35 +0000 |
---|---|---|
committer | ewinslow <ewinslow@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2011-02-11 00:14:35 +0000 |
commit | e1abc1ed8ad8fe17285d75fc2b3d45c5b5f3ee4f (patch) | |
tree | 08513299434f8589e9fcf97a211772d64223bf69 /views/default/admin/components/plugin_dependencies.php | |
parent | 84dcdeb236487a52486e0bd9234b214f2b64dd3c (diff) | |
download | elgg-e1abc1ed8ad8fe17285d75fc2b3d45c5b5f3ee4f.tar.gz elgg-e1abc1ed8ad8fe17285d75fc2b3d45c5b5f3ee4f.tar.bz2 |
elgg-$state-dependency => elgg-state-(error|success)
git-svn-id: http://code.elgg.org/elgg/trunk@8104 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'views/default/admin/components/plugin_dependencies.php')
-rw-r--r-- | views/default/admin/components/plugin_dependencies.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/views/default/admin/components/plugin_dependencies.php b/views/default/admin/components/plugin_dependencies.php index bb0fa4eec..eea4cd287 100644 --- a/views/default/admin/components/plugin_dependencies.php +++ b/views/default/admin/components/plugin_dependencies.php @@ -30,9 +30,9 @@ foreach ($deps as $dep) { $type = $dep['type']; if ($dep['status']) { - $class = "elgg-satisfied-dependency elgg-dependency-$type"; + $class = "elgg-state-success elgg-dependency-$type"; } else { - $class = "elgg-unsatisfied-dependency elgg-dependency-$type"; + $class = "elgg-state-error elgg-dependency-$type"; } echo "<tr class=\"$row\">"; |