function dpm
Search API
| 7.x misc.inc | dpm($var, $max_levels = 15) |
This is a convenience function which simply passes through to fpm(), due entirely because of typos with fpm().
See also
fpm()
File
- includes/
misc.inc, line 2764 - This file contains misc functions for FlightPath
Code
function dpm($var, $max_levels = 15) {
fpm("You typed 'dpm()' instead of 'fpm()'. Make sure to use fpm() next time.");
fpm($var, $max_levels);
}
