Changeset 138


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

Q - missed a RecordLock? name change

File:
1 edited

Legend:

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

    r137 r138  
    11<?php
    22/**
    3  * RecordLock.inc.php
     3 * Lock.inc.php
    44 * code by strangecode :: www.strangecode.com :: this document contains copyrighted information
    55 *
    6  * The RecordLock class provides a system for locking abstract DB rows.
     6 * The Lock class provides a system for locking abstract DB rows.
    77 *
    88 * @author  Quinn Comendant <quinn@strangecode.com>
    99 * @version 2.1
    1010 */
    11 class RecordLock {
     11class Lock {
    1212
    1313    // Configuration of this object.
     
    2929     * This method enforces the singleton pattern for this class.
    3030     *
    31      * @return  object  Reference to the global RecordLock object.
     31     * @return  object  Reference to the global Lock object.
    3232     * @access  public
    3333     * @static
     
    3838
    3939        if ($instance === null) {
    40             $instance = new RecordLock($auth_object);
     40            $instance = new Lock($auth_object);
    4141        }
    4242
     
    4949     * @param mixed  $auth_object  An Auth_SQL or Auth_FILE object.
    5050     */
    51     function RecordLock($auth_object)
     51    function Lock($auth_object)
    5252    {
    5353        $app =& App::getInstance();
Note: See TracChangeset for help on using the changeset viewer.