1234567891011121314151617181920212223242526272829303132333435 |
- <?php
- define('INSTALLDIR', dirname(__DIR__));
- define('PUBLICDIR', INSTALLDIR . DIRECTORY_SEPARATOR . 'public');
- $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";
|