12345678910111213141516171819202122232425262728293031323334 |
- <?php
- define('INSTALLDIR', realpath(dirname(__FILE__) . '/..'));
- $helptext = <<<END_OF_HELP
- gnusocialversion.php [options]
- prints out the current version of the software
- END_OF_HELP;
- require_once INSTALLDIR.'/scripts/commandline.inc';
- print GNUSOCIAL_VERSION."\n";
|