summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorspider@app1 <spiderr@bitweaver.org>2016-06-22 15:12:24 -0400
committerspider@app1 <spiderr@bitweaver.org>2016-06-22 15:12:24 -0400
commit12ae87c61898e47e3e509e8596b8fb71a7859717 (patch)
tree6561eedddd4b848e8d465a97f374d1c1d1443b29
parenta1cdebad35509a934bca5b014f0a211b123dca3a (diff)
downloadthemes-12ae87c61898e47e3e509e8596b8fb71a7859717.tar.gz
themes-12ae87c61898e47e3e509e8596b8fb71a7859717.tar.bz2
themes-12ae87c61898e47e3e509e8596b8fb71a7859717.zip
change-all-StartTrans-calls-to-BitBase-method
-rw-r--r--BitThemes.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/BitThemes.php b/BitThemes.php
index 3ea7488..ee32df2 100644
--- a/BitThemes.php
+++ b/BitThemes.php
@@ -1280,7 +1280,7 @@ class BitThemes extends BitSingleton {
// fix everything
// transaction will save us if something goes bad
- $this->mDb->StartTrans();
+ $this->StartTrans();
foreach( $legacy_mods as $old ){
$key = array_pop( explode( "/", $old['module_rsrc'] ) );
@@ -1290,7 +1290,7 @@ class BitThemes extends BitSingleton {
}
}
- $this->mDb->CompleteTrans();
+ $this->CompleteTrans();
}
/**