Author: david
Date: Tue Oct 25 16:58:48 2011
New Revision: 10187
Log:
Fix pruneEmptyDirectory() conditional
Modified:
trunk/lib/model/QubitDigitalObject.php
Modified: trunk/lib/model/QubitDigitalObject.php
==============================================================================
--- trunk/lib/model/QubitDigitalObject.php Tue Oct 25 16:43:32 2011
(r10186)
+++ trunk/lib/model/QubitDigitalObject.php Tue Oct 25 16:58:48 2011
(r10187)
@@ -1940,7 +1940,7 @@
{
return;
}
- } while (strpos($dir, '/') && $dir = substr($dir, 0, strrpos($dir, '/')));
+ } while (strrpos($dir, '/') && $dir = substr($dir, 0, strrpos($dir, '/')));
}
/**
--
You received this message because you are subscribed to the Google Groups
"Qubit Toolkit Commits" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to
[email protected].
For more options, visit this group at
http://groups.google.com/group/qubit-commits?hl=en.