Index: trunk/ippMonitor/raw/cleanTmpDirectory.php
===================================================================
--- trunk/ippMonitor/raw/cleanTmpDirectory.php	(revision 28608)
+++ trunk/ippMonitor/raw/cleanTmpDirectory.php	(revision 41730)
@@ -14,17 +14,20 @@
 
 
-exec("find /tmp -user apache", $output, $status);
+echo "This function has been deprecated (EAM 2021.07.28)\n";
 
-echo "<html><body>\n";
-echo "Cleaning /tmp file (removing all files belonging to user apache)<br><br>\n";
-$count = 0;
-foreach ($output as $key => $value) {
-  echo "Deleting [$value]<br>\n";
-  exec("rm -f $value");
-  $count++;
+if (0) {
+   exec("find /tmp -user apache", $output, $status);
+
+   echo "<html><body>\n";
+   echo "Cleaning /tmp file (removing all files belonging to user apache)<br><br>\n";
+   $count = 0;
+   foreach ($output as $key => $value) {
+     echo "Deleting [$value]<br>\n";
+     exec("rm -f $value");
+     $count++;
+   }
+   echo "<br>/tmp cleaned ($count files were deleted)<br>\n";
 }
-echo "<br>/tmp cleaned ($count files were deleted)<br>\n";
 echo "</body></html>\n";
-
 
 menu_end();
