Commit 50a87f1b authored by Côme Chilliet's avatar Côme Chilliet
Browse files

Rename class "Print_a_class" to match the regular expression ^[a-zA-Z0-9]+$

Showing with 4 additions and 4 deletions
+4 -4
......@@ -59,7 +59,7 @@
* based on the print_a() function from
* Stephan Pirson (Saibot)
*/
class Print_a_class {
class printAClass {
// this can be changed to FALSE if you don't like the fancy string formatting
var $look_for_leading_tabs = TRUE;
......@@ -80,7 +80,7 @@ class Print_a_class {
var $export_hash;
/*!
* \brief Print_a_class constructor
* \brief printAClass constructor
*/
function __construct()
{
......@@ -215,7 +215,7 @@ class Print_a_class {
}
/*
* \brief helper function.. calls print_a() inside the print_a_class
* \brief helper function.. calls print_a() inside the printAClass
*
* \param array $array
*
......@@ -229,7 +229,7 @@ function print_a($array, $return_mode = FALSE, $show_object_vars = FALSE, $expor
{
$e = error_reporting(0);
if (is_array($array) || is_object($array)) {
$pa = new Print_a_class;
$pa = new printAClass;
if ($show_object_vars) {
$pa->show_object_vars = TRUE;
}
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment