Separated class library and web interface code Added a common config/database config to be referenced by all subprojects Fixed previous commit
14 lines
230 B
PHP
14 lines
230 B
PHP
<?php
|
|
|
|
class HandBrakeCluster_ClientLogEntry extends HandBrakeCluster_LogEntry {
|
|
|
|
public static function initialise() {
|
|
parent::$table_name = 'client_log';
|
|
}
|
|
|
|
};
|
|
|
|
HandBrakeCluster_ClientLogEntry::initialise();
|
|
|
|
?>
|