Ignore:
Timestamp:
Jun 3, 2006 8:15:06 PM (18 years ago)
Author:
scdev
Message:

Q - Renamed SessionCache? to Cache, RecordVersion? to Version, and RecordLock? to Lock

File:
1 moved

Legend:

Unmodified
Added
Removed
  • trunk/lib/Version.inc.php

    r136 r137  
    11<?php
    22/**
    3  * RecordVersion.inc.php
     3 * Version.inc.php
    44 * code by strangecode :: www.strangecode.com :: this document contains copyrighted information
    55 *
    6  * The RecordVersion class provides a system for saving, reviewing, and
     6 * The Version class provides a system for saving, reviewing, and
    77 * restoring versions of a record of any DB table. All the data in the record is
    88 * serialized, compressed, and saved in a blob in the version_tbl. Restoring a
     
    1717 * @version 2.1
    1818 */
    19 class RecordVersion {
     19class Version {
    2020
    2121    // Configuration of this object.
     
    4444
    4545        if ($instance === null) {
    46             $instance = new RecordVersion($auth_object);
     46            $instance = new Version($auth_object);
    4747        }
    4848
     
    5555     * @param mixed  $auth_object  An Auth_SQL object.
    5656     */
    57     function RecordVersion($auth_object)
     57    function Version($auth_object)
    5858    {
    5959        $app =& App::getInstance();
Note: See TracChangeset for help on using the changeset viewer.