View Issue Details

IDProjectCategoryView StatusLast Update
0003315OXID eShop (all versions)4.07. Source code, Testpublic2012-12-10 13:44
Reporterwanis 
PriorityhighSeverityminorReproducibilityalways
Status resolvedResolutionfixed 
Product Version 
Target VersionFixed in Version4.6.0_beta3 
Summary0003315: replace anyObject::$_sCoreTbl to anyObject::$_sCoreTable
Descriptionthese to variables means the same (points DB table name of object), but oxBase::$_sCoreTable defined only in oxBase::init() and used there DB table name used.

Seems like $_sCoreTbl is deprecated

by renaming, oxBase::init() could be called in one place: oxBase::__construct(), so no constuctors needed for simple objects like this:
    public function __construct()
    {
        parent::__construct();
        $this->init('oxnews');
    }
TagsNo tags attached.
ThemeBoth
BrowserAll
PHP Versionany
Database Versionany

Activities

mindaugas.rimgaila

2012-02-22 15:31

reporter   ~0005788

Parameter $_sCoreTbl set as deprecated.