1
0
mirror of https://github.com/e107inc/e107.git synced 2025-08-12 09:34:54 +02:00

Updating paths to e107_core/sql

This commit is contained in:
Cameron
2013-01-23 13:48:29 -08:00
parent 4a6ede6447
commit 37ccac8f6d
2 changed files with 4 additions and 4 deletions

View File

@@ -649,7 +649,7 @@ class e107_user_extended
case EUF_PREDEFINED : // predefined list, shown in dropdown
$listRoot = trim($struct['user_extended_struct_values']); // Base list name
$filename = e_ADMIN.'sql/extended_'.$listRoot.'.php';
$filename = e_CORE.'sql/extended_'.$listRoot.'.php';
if (!is_readable($filename)) return 'No file: '.$filename;
require_once($filename);
$className = 'extended_'.$listRoot;
@@ -890,7 +890,7 @@ class e107_user_extended
*/
function user_extended_display_text($table, $value)
{
$filename = e_ADMIN.'sql/extended_'.$table.'.php';
$filename = e_CORE.'sql/extended_'.$table.'.php';
if (!is_readable($filename)) return 'No file: '.$filename;
require_once($filename);
$className = 'extended_'.$table;