Skip to content
Snippets Groups Projects
Commit b52466ea authored by Maximilian Giller's avatar Maximilian Giller :squid:
Browse files

Added missing prefix to function

parent 65618b2b
No related branches found
No related tags found
No related merge requests found
Pipeline #54719 passed
<?php
$SPACES_TABLE = get_table_name("spaces");
$NODES_TABLE = get_table_name("nodes");
$NODETYPES_TABLE = get_table_name("nodetypes");
$LINKS_TABLE = get_table_name("links");
$REFERENCES_TABLE = get_table_name("references");
$SPACES_TABLE = ks_get_table_name("spaces");
$NODES_TABLE = ks_get_table_name("nodes");
$NODETYPES_TABLE = ks_get_table_name("nodetypes");
$LINKS_TABLE = ks_get_table_name("links");
$REFERENCES_TABLE = ks_get_table_name("references");
global $ks_db_version;
$ks_db_version = '1.0';
function get_table_name($table)
function ks_get_table_name($table)
{
global $wpdb;
return $wpdb->prefix . "ks_" . $table;
......
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