Skip to content

Commit

Permalink
Update readme
Browse files Browse the repository at this point in the history
  • Loading branch information
johngodley committed May 25, 2015
1 parent b29be7f commit 66643e1
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 346 deletions.
4 changes: 2 additions & 2 deletions audit-trail.php
Original file line number Diff line number Diff line change
Expand Up @@ -28,15 +28,15 @@

define( 'AUDIT_TRAIL_VERSION', '0.3' );


/**
* Audit Trail plugin
*
* @package Audit Trail
**/

class Audit_Trail {
var $auditor;
private static $instance = null;
private $auditor;

static function init() {
if ( is_null( self::$instance ) ) {
Expand Down
12 changes: 6 additions & 6 deletions models/audit.php
Original file line number Diff line number Diff line change
Expand Up @@ -21,12 +21,12 @@
**/

class AT_Audit {
var $happened_at;
var $id;
var $operation;
var $ip;
var $item_id;
var $user_id;
public $happened_at;
public $id;
public $operation;
public $ip;
public $item_id;
public $user_id;

/**
* Constructor accepts an array of values with which to seed the object
Expand Down
333 changes: 0 additions & 333 deletions plugin.php

This file was deleted.

Loading

0 comments on commit 66643e1

Please sign in to comment.