Author: david
Date: Tue Oct 25 17:00:00 2011
New Revision: 10188
Log:
Use strict comparison operator
Modified:
trunk/lib/model/QubitDigitalObject.php
Modified: trunk/lib/model/QubitDigitalObject.php
==============================================================================
--- trunk/lib/model/QubitDigitalObject.php Tue Oct 25 16:58:48 2011
(r10187)
+++ trunk/lib/model/QubitDigitalObject.php Tue Oct 25 17:00:00 2011
(r10188)
@@ -1940,7 +1940,7 @@
{
return;
}
- } while (strrpos($dir, '/') && $dir = substr($dir, 0, strrpos($dir, '/')));
+ } while (false !== 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.