~fabiocbalbuquerque/sahana-agasti/web-services

« back to all changes in this revision

Viewing changes to web/wiki/lib/plugins/plugin/classes/ap_manage.class.php

  • Committer: Chad Heuschober
  • Date: 2011-06-06 13:37:45 UTC
  • mfrom: (1.1.1244 trunk)
  • mto: This revision was merged to the branch mainline in revision 17.
  • Revision ID: chad.heuschober@mail.cuny.edu-20110606133745-850mdvnjtv392zta
Pulled in most recent batch of changes from the cuny sps trunk.

Show diffs side-by-side

added added

removed removed

Lines of Context:
176
176
    function dir_delete($path) {
177
177
        if (!is_string($path) || $path == "") return false;
178
178
 
179
 
        if (is_dir($path)) {
 
179
        if (is_dir($path) && !is_link($path)) {
180
180
            if (!$dh = @opendir($path)) return false;
181
181
 
182
182
            while ($f = readdir($dh)) {