mirror of
https://github.com/ZoneMinder/zoneminder.git
synced 2026-02-01 18:11:14 -05:00
11 lines
237 B
PHP
11 lines
237 B
PHP
<?php
|
|
class VersionController extends AppController {
|
|
|
|
public function index() {
|
|
$this->set('zmDynLastVersion', Configure::read('ZM_DYN_LAST_VERSION'));
|
|
$this->set('zmDynDBVersion', Configure::read('ZM_DYN_DB_VERSION'));
|
|
}
|
|
|
|
}
|
|
?>
|