This file is indexed.

/usr/share/ltsp-cluster-control/Admin/util/printing.php is in ltsp-cluster-control 2.0.3-0ubuntu3.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
<?php
/*
# Copyright 2004, Revolution Linux Inc., Alban Crequy
#
# This file is part of the MILLE-XTERM distribution.
# See the MILLE-XTERM (english) and/or the MILLE (french) project web site
#
# http://www.revolutionlinux.com/mille-xterm/
# http://www.mille.ca/
#
# The MILLE-XTERM framework is covered by the GNU General Public License. See
# the COPYING file in the top-level MILLE-XTERM directory. Software packages
# that are included in the MILLE-XTERM distribution have their own licenses.
#
# -------------------------------------------------------------------------
*/
	require_once 'PrintingBrowser.php';
	#
	/**
	*  Loader for Printing Module
	*/
	switch ($module_action){
		case 'build':
			$printing = new PrintingBrowser();
			break;
		case 'print':
			$printing->print_printing();
			break;
	}
?>