Skip to content
Snippets Groups Projects
Commit e8ea838f authored by Olav Morken's avatar Olav Morken
Browse files

Store_SQL: Fix support for custom table prefix.

git-svn-id: https://simplesamlphp.googlecode.com/svn/trunk@2674 44740490-163a-0410-bde0-09ae8108e29a
parent 691e141f
No related branches found
No related tags found
No related merge requests found
......@@ -133,7 +133,7 @@ class SimpleSAML_Store_SQL extends SimpleSAML_Store {
assert('is_string($name)');
assert('is_int($version)');
$this->insertOrUpdate('simpleSAMLphp_tableVersion', array('_name'),
$this->insertOrUpdate($this->prefix . '_tableVersion', array('_name'),
array('_name' => $name, '_version' => $version));
$this->tableVersions[$name] = $version;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment