Skip to content

Commit

Permalink
Added integration hooks for knownInts and knownFloats
Browse files Browse the repository at this point in the history
Added integration hooks for knownInts and knownFloats, both are used in
order to know what profile fields are numbers and be able to update
them as such.

/Sources/Subs.php: integrate_known_numbers
  • Loading branch information
NicolasBonet committed Jul 23, 2012
1 parent c61121a commit 22b4fad
Show file tree
Hide file tree
Showing 1,038 changed files with 364 additions and 0 deletions.
Empty file modified DCO.txt 100644 → 100755
Empty file.
Empty file modified Packages/.htaccess 100644 → 100755
Empty file.
Empty file modified Packages/backups/.htaccess 100644 → 100755
Empty file.
Empty file modified Packages/backups/index.php 100644 → 100755
Empty file.
Empty file modified Packages/index.php 100644 → 100755
Empty file.
Empty file modified Packages/installed.list 100644 → 100755
Empty file.
Empty file modified README.md 100644 → 100755
Empty file.
Empty file modified SSI.php 100644 → 100755
Empty file.
179 changes: 179 additions & 0 deletions Settings.php
@@ -0,0 +1,179 @@
<?php

/**
* The settings file contains all of the basic settings that need to be present when a database/cache is not available.
*
* Simple Machines Forum (SMF)
*
* @package SMF
* @author Simple Machines http://www.simplemachines.org
* @copyright 2011 Simple Machines
* @license http://www.simplemachines.org/about/smf/license.php BSD
*
* @version 2.1 Alpha 1
*/

########## Maintenance ##########
/**
* The maintenance "mode"
* Set to 1 to enable Maintenance Mode, 2 to make the forum untouchable. (you'll have to make it 0 again manually!)
* 0 is default and disables maintenance mode.
* @var int 0, 1, 2
* @global int $maintenance
*/
$maintenance = 0;
/**
* Title for the Maintenance Mode message.
* @var string
* @global int $mtitle
*/
$mtitle = 'Maintenance Mode';
/**
* Description of why the forum is in maintenance mode.
* @var string
* @global string $mmessage
*/
$mmessage = 'Okay faithful users...we\'re attempting to restore an older backup of the database...news will be posted once we\'re back!';

########## Forum Info ##########
/**
* The name of your forum.
* @var string
*/
$mbname = 'My Community';
/**
* The default language file set for the forum.
* @var string
*/
$language = 'english';
/**
* URL to your forum's folder. (without the trailing /!)
* @var string
*/
$boardurl = 'http://localhost/smf2.1';
/**
* Email address to send emails from. (like noreply@yourdomain.com.)
* @var string
*/
$webmaster_email = 'nibogo@nibogo.com';
/**
* Name of the cookie to set for authentication.
* @var string
*/
$cookiename = 'SMFCookie970';

########## Database Info ##########
/**
* The database type
* Default options: mysql, sqlite, postgresql
* @var string
*/
$db_type = 'mysql';
/**
* The server to connect to (or a Unix socket)
* @var string
*/
$db_server = 'localhost';
/**
* The database name
* @var string
*/
$db_name = '2.1_github';
/**
* Database username
* @var string
*/
$db_user = 'root';
/**
* Database password
* @var string
*/
$db_passwd = '';
/**
* Database user for when connecting with SSI
* @var string
*/
$ssi_db_user = '';
/**
* Database password for when connecting with SSI
* @var string
*/
$ssi_db_passwd = '';
/**
* A prefix to put in front of your table names.
* This helps to prevent conflicts
* @var string
*/
$db_prefix = 'smf_';
/**
* Use a persistent database connection
* @var int|bool
*/
$db_persist = 0;
/**
*
* @var int|bool
*/
$db_error_send = 0;

########## Cache Info ##########
/**
* Select a cache system. You want to leave this up to the cache area of the admin panel for
* proper detection of apc, eaccelerator, memcache, mmcache, output_cache, smf, or xcache
* (you can add more with a mod).
* @var string
*/
$cache_accelerator = '';
/**
* The level at which you would like to cache. Between 0 (off) through 3 (cache a lot).
* @var int
*/
$cache_enable = 0;
/**
* This is only used for memcache / memcached. Should be a string of 'server:port,server:port'
* @var array
*/
$cache_memcached = '';
/**
* This is only for the 'smf' file cache system. It is the path to the cache directory.
* It is also recommended that you place this in /tmp/ if you are going to use this.
* @var string
*/
$cachedir = '/Applications/XAMPP/xamppfiles/htdocs/smf2.1/cache';

########## Directories/Files ##########
# Note: These directories do not have to be changed unless you move things.
/**
* The absolute path to the forum's folder. (not just '.'!)
* @var string
*/
$boarddir = '/Applications/XAMPP/xamppfiles/htdocs/smf2.1';
/**
* Path to the Sources directory.
* @var string
*/
$sourcedir = '/Applications/XAMPP/xamppfiles/htdocs/smf2.1/Sources';

########## Error-Catching ##########
# Note: You shouldn't touch these settings.
if (file_exists(dirname(__FILE__) . '/db_last_error.php'))
include(dirname(__FILE__) . '/db_last_error.php');

if (!isset($db_last_error))
{
// File does not exist so lets try to create it
file_put_contents(dirname(__FILE__) . '/db_last_error.php', '<' . '?' . "php\n" . '$db_last_error = 0;' . "\n" . '?' . '>');
$db_last_error = 0;
}


# Make sure the paths are correct... at least try to fix them.
if (!file_exists($boarddir) && file_exists(dirname(__FILE__) . '/agreement.txt'))
$boarddir = dirname(__FILE__);
if (!file_exists($sourcedir) && file_exists($boarddir . '/Sources'))
$sourcedir = $boarddir . '/Sources';
if (!file_exists($cachedir) && file_exists($boarddir . '/cache'))
$cachedir = $boarddir . '/cache';

$db_character_set = 'utf8';
?>
179 changes: 179 additions & 0 deletions Settings_Bak.php
@@ -0,0 +1,179 @@
<?php

/**
* The settings file contains all of the basic settings that need to be present when a database/cache is not available.
*
* Simple Machines Forum (SMF)
*
* @package SMF
* @author Simple Machines http://www.simplemachines.org
* @copyright 2011 Simple Machines
* @license http://www.simplemachines.org/about/smf/license.php BSD
*
* @version 2.1 Alpha 1
*/

########## Maintenance ##########
/**
* The maintenance "mode"
* Set to 1 to enable Maintenance Mode, 2 to make the forum untouchable. (you'll have to make it 0 again manually!)
* 0 is default and disables maintenance mode.
* @var int 0, 1, 2
* @global int $maintenance
*/
$maintenance = 0;
/**
* Title for the Maintenance Mode message.
* @var string
* @global int $mtitle
*/
$mtitle = 'Maintenance Mode';
/**
* Description of why the forum is in maintenance mode.
* @var string
* @global string $mmessage
*/
$mmessage = 'Okay faithful users...we\'re attempting to restore an older backup of the database...news will be posted once we\'re back!';

########## Forum Info ##########
/**
* The name of your forum.
* @var string
*/
$mbname = 'My Community';
/**
* The default language file set for the forum.
* @var string
*/
$language = 'english';
/**
* URL to your forum's folder. (without the trailing /!)
* @var string
*/
$boardurl = 'http://localhost/smf2.1';
/**
* Email address to send emails from. (like noreply@yourdomain.com.)
* @var string
*/
$webmaster_email = 'nibogo@nibogo.com';
/**
* Name of the cookie to set for authentication.
* @var string
*/
$cookiename = 'SMFCookie970';

########## Database Info ##########
/**
* The database type
* Default options: mysql, sqlite, postgresql
* @var string
*/
$db_type = 'mysql';
/**
* The server to connect to (or a Unix socket)
* @var string
*/
$db_server = 'localhost';
/**
* The database name
* @var string
*/
$db_name = '2.1_github';
/**
* Database username
* @var string
*/
$db_user = 'root';
/**
* Database password
* @var string
*/
$db_passwd = '';
/**
* Database user for when connecting with SSI
* @var string
*/
$ssi_db_user = '';
/**
* Database password for when connecting with SSI
* @var string
*/
$ssi_db_passwd = '';
/**
* A prefix to put in front of your table names.
* This helps to prevent conflicts
* @var string
*/
$db_prefix = 'smf_';
/**
* Use a persistent database connection
* @var int|bool
*/
$db_persist = 0;
/**
*
* @var int|bool
*/
$db_error_send = 0;

########## Cache Info ##########
/**
* Select a cache system. You want to leave this up to the cache area of the admin panel for
* proper detection of apc, eaccelerator, memcache, mmcache, output_cache, smf, or xcache
* (you can add more with a mod).
* @var string
*/
$cache_accelerator = '';
/**
* The level at which you would like to cache. Between 0 (off) through 3 (cache a lot).
* @var int
*/
$cache_enable = 0;
/**
* This is only used for memcache / memcached. Should be a string of 'server:port,server:port'
* @var array
*/
$cache_memcached = '';
/**
* This is only for the 'smf' file cache system. It is the path to the cache directory.
* It is also recommended that you place this in /tmp/ if you are going to use this.
* @var string
*/
$cachedir = '/Applications/XAMPP/xamppfiles/htdocs/smf2.1/cache';

########## Directories/Files ##########
# Note: These directories do not have to be changed unless you move things.
/**
* The absolute path to the forum's folder. (not just '.'!)
* @var string
*/
$boarddir = '/Applications/XAMPP/xamppfiles/htdocs/smf2.1';
/**
* Path to the Sources directory.
* @var string
*/
$sourcedir = '/Applications/XAMPP/xamppfiles/htdocs/smf2.1/Sources';

########## Error-Catching ##########
# Note: You shouldn't touch these settings.
if (file_exists(dirname(__FILE__) . '/db_last_error.php'))
include(dirname(__FILE__) . '/db_last_error.php');

if (!isset($db_last_error))
{
// File does not exist so lets try to create it
file_put_contents(dirname(__FILE__) . '/db_last_error.php', '<' . '?' . "php\n" . '$db_last_error = 0;' . "\n" . '?' . '>');
$db_last_error = 0;
}


# Make sure the paths are correct... at least try to fix them.
if (!file_exists($boarddir) && file_exists(dirname(__FILE__) . '/agreement.txt'))
$boarddir = dirname(__FILE__);
if (!file_exists($sourcedir) && file_exists($boarddir . '/Sources'))
$sourcedir = $boarddir . '/Sources';
if (!file_exists($cachedir) && file_exists($boarddir . '/cache'))
$cachedir = $boarddir . '/cache';

$db_character_set = 'utf8';
?>
Empty file modified Smileys/aaron/afro.gif 100644 → 100755
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Empty file modified Smileys/aaron/angel.gif 100644 → 100755
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Empty file modified Smileys/aaron/angry.gif 100644 → 100755
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Empty file modified Smileys/aaron/azn.gif 100644 → 100755
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Empty file modified Smileys/aaron/blank.gif 100644 → 100755
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Empty file modified Smileys/aaron/cheesy.gif 100644 → 100755
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Empty file modified Smileys/aaron/cool.gif 100644 → 100755
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Empty file modified Smileys/aaron/cry.gif 100644 → 100755
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Empty file modified Smileys/aaron/embarrassed.gif 100644 → 100755
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Empty file modified Smileys/aaron/evil.gif 100644 → 100755
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Empty file modified Smileys/aaron/grin.gif 100644 → 100755
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Empty file modified Smileys/aaron/huh.gif 100644 → 100755
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Empty file modified Smileys/aaron/index.php 100644 → 100755
Empty file.
Empty file modified Smileys/aaron/kiss.gif 100644 → 100755
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Empty file modified Smileys/aaron/laugh.gif 100644 → 100755
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Empty file modified Smileys/aaron/lipsrsealed.gif 100644 → 100755
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Empty file modified Smileys/aaron/police.gif 100644 → 100755
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Empty file modified Smileys/aaron/rolleyes.gif 100644 → 100755
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Empty file modified Smileys/aaron/sad.gif 100644 → 100755
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Empty file modified Smileys/aaron/shocked.gif 100644 → 100755
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Empty file modified Smileys/aaron/smiley.gif 100644 → 100755
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Empty file modified Smileys/aaron/tongue.gif 100644 → 100755
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Empty file modified Smileys/aaron/undecided.gif 100644 → 100755
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Empty file modified Smileys/aaron/wink.gif 100644 → 100755
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Empty file modified Smileys/akyhne/afro.gif 100644 → 100755
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Empty file modified Smileys/akyhne/angel.gif 100644 → 100755
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Empty file modified Smileys/akyhne/angry.gif 100644 → 100755
Empty file modified Smileys/akyhne/azn.gif 100644 → 100755
Empty file modified Smileys/akyhne/blank.gif 100644 → 100755
Empty file modified Smileys/akyhne/cheesy.gif 100644 → 100755
Empty file modified Smileys/akyhne/cool.gif 100644 → 100755
Empty file modified Smileys/akyhne/cry.gif 100644 → 100755
Empty file modified Smileys/akyhne/embarrassed.gif 100644 → 100755
Empty file modified Smileys/akyhne/evil.gif 100644 → 100755
Empty file modified Smileys/akyhne/grin.gif 100644 → 100755
Empty file modified Smileys/akyhne/huh.gif 100644 → 100755
Empty file modified Smileys/akyhne/index.php 100644 → 100755
Empty file.
Empty file modified Smileys/akyhne/kiss.gif 100644 → 100755
Empty file modified Smileys/akyhne/laugh.gif 100644 → 100755
Empty file modified Smileys/akyhne/lipsrsealed.gif 100644 → 100755
Empty file modified Smileys/akyhne/police.gif 100644 → 100755
Empty file modified Smileys/akyhne/rolleyes.gif 100644 → 100755
Empty file modified Smileys/akyhne/sad.gif 100644 → 100755
Empty file modified Smileys/akyhne/shocked.gif 100644 → 100755
Empty file modified Smileys/akyhne/smiley.gif 100644 → 100755
Empty file modified Smileys/akyhne/tongue.gif 100644 → 100755
Empty file modified Smileys/akyhne/undecided.gif 100644 → 100755
Empty file modified Smileys/akyhne/wink.gif 100644 → 100755
Empty file modified Smileys/default/afro.gif 100644 → 100755
Empty file modified Smileys/default/angel.gif 100644 → 100755
Empty file modified Smileys/default/angry.gif 100644 → 100755
Empty file modified Smileys/default/azn.gif 100644 → 100755
Empty file modified Smileys/default/blank.gif 100644 → 100755
Empty file modified Smileys/default/cheesy.gif 100644 → 100755
Empty file modified Smileys/default/cool.gif 100644 → 100755
Empty file modified Smileys/default/cry.gif 100644 → 100755
Empty file modified Smileys/default/embarrassed.gif 100644 → 100755
Empty file modified Smileys/default/evil.gif 100644 → 100755
Empty file modified Smileys/default/grin.gif 100644 → 100755
Empty file modified Smileys/default/huh.gif 100644 → 100755
Empty file modified Smileys/default/index.php 100644 → 100755
Empty file.
Empty file modified Smileys/default/kiss.gif 100644 → 100755
Empty file modified Smileys/default/laugh.gif 100644 → 100755
Empty file modified Smileys/default/lipsrsealed.gif 100644 → 100755
Empty file modified Smileys/default/police.gif 100644 → 100755
Empty file modified Smileys/default/rolleyes.gif 100644 → 100755
Empty file modified Smileys/default/sad.gif 100644 → 100755
Empty file modified Smileys/default/shocked.gif 100644 → 100755
Empty file modified Smileys/default/smiley.gif 100644 → 100755
Empty file modified Smileys/default/tongue.gif 100644 → 100755
Empty file modified Smileys/default/undecided.gif 100644 → 100755
Empty file modified Smileys/default/wink.gif 100644 → 100755
Empty file modified Smileys/fugue/afro.gif 100644 → 100755
Empty file modified Smileys/fugue/angel.gif 100644 → 100755
Empty file modified Smileys/fugue/angry.gif 100644 → 100755
Empty file modified Smileys/fugue/azn.gif 100644 → 100755
Empty file modified Smileys/fugue/blank.gif 100644 → 100755
Empty file modified Smileys/fugue/cheesy.gif 100644 → 100755
Empty file modified Smileys/fugue/cool.gif 100644 → 100755
Empty file modified Smileys/fugue/cry.gif 100644 → 100755
Empty file modified Smileys/fugue/embarrassed.gif 100644 → 100755
Empty file modified Smileys/fugue/evil.gif 100644 → 100755
Empty file modified Smileys/fugue/grin.gif 100644 → 100755
Empty file modified Smileys/fugue/huh.gif 100644 → 100755
Empty file modified Smileys/fugue/index.php 100644 → 100755
Empty file.
Empty file modified Smileys/fugue/kiss.gif 100644 → 100755
Empty file modified Smileys/fugue/laugh.gif 100644 → 100755
Empty file modified Smileys/fugue/lipsrsealed.gif 100644 → 100755
Empty file modified Smileys/fugue/police.gif 100644 → 100755
Empty file modified Smileys/fugue/rolleyes.gif 100644 → 100755
Empty file modified Smileys/fugue/sad.gif 100644 → 100755
Empty file modified Smileys/fugue/shocked.gif 100644 → 100755
Empty file modified Smileys/fugue/smiley.gif 100644 → 100755
Empty file modified Smileys/fugue/tongue.gif 100644 → 100755
Empty file modified Smileys/fugue/undecided.gif 100644 → 100755
Empty file modified Smileys/fugue/wink.gif 100644 → 100755
Empty file modified Smileys/index.php 100644 → 100755
Empty file.
Empty file modified Sources/Admin.php 100644 → 100755
Empty file.
Empty file modified Sources/BoardIndex.php 100644 → 100755
Empty file.
Empty file modified Sources/Calendar.php 100644 → 100755
Empty file.
Empty file modified Sources/Class-BrowserDetect.php 100644 → 100755
Empty file.
Empty file modified Sources/Class-CurlFetchWeb.php 100644 → 100755
Empty file.
Empty file modified Sources/Class-Graphics.php 100644 → 100755
Empty file.
Empty file modified Sources/Class-Package.php 100644 → 100755
Empty file.
Empty file modified Sources/DbExtra-mysql.php 100644 → 100755
Empty file.
Empty file modified Sources/DbExtra-postgresql.php 100644 → 100755
Empty file.
Empty file modified Sources/DbExtra-sqlite.php 100644 → 100755
Empty file.
Empty file modified Sources/DbPackages-mysql.php 100644 → 100755
Empty file.
Empty file modified Sources/DbPackages-postgresql.php 100644 → 100755
Empty file.
Empty file modified Sources/DbPackages-sqlite.php 100644 → 100755
Empty file.
Empty file modified Sources/DbSearch-mysql.php 100644 → 100755
Empty file.
Empty file modified Sources/DbSearch-postgresql.php 100644 → 100755
Empty file.
Empty file modified Sources/DbSearch-sqlite.php 100644 → 100755
Empty file.
Empty file modified Sources/Display.php 100644 → 100755
Empty file.
Empty file modified Sources/DumpDatabase.php 100644 → 100755
Empty file.
Empty file modified Sources/Errors.php 100644 → 100755
Empty file.
Empty file modified Sources/Groups.php 100644 → 100755
Empty file.
Empty file modified Sources/Help.php 100644 → 100755
Empty file.
Empty file modified Sources/Karma.php 100644 → 100755
Empty file.
Empty file modified Sources/Load.php 100644 → 100755
Empty file.
Empty file modified Sources/LogInOut.php 100644 → 100755
Empty file.
Empty file modified Sources/Logging.php 100644 → 100755
Empty file.
Empty file modified Sources/ManageAttachments.php 100644 → 100755
Empty file.
Empty file modified Sources/ManageBans.php 100644 → 100755
Empty file.
Empty file modified Sources/ManageBoards.php 100644 → 100755
Empty file.
Empty file modified Sources/ManageCalendar.php 100644 → 100755
Empty file.
Empty file modified Sources/ManageErrors.php 100644 → 100755
Empty file.
Empty file modified Sources/ManageLanguages.php 100644 → 100755
Empty file.
Empty file modified Sources/ManageMail.php 100644 → 100755
Empty file.
Empty file modified Sources/ManageMaintenance.php 100644 → 100755
Empty file.
Empty file modified Sources/ManageMembergroups.php 100644 → 100755
Empty file.
Empty file modified Sources/ManageMembers.php 100644 → 100755
Empty file.
Empty file modified Sources/ManageNews.php 100644 → 100755
Empty file.
Empty file modified Sources/ManagePaid.php 100644 → 100755
Empty file.
Empty file modified Sources/ManagePermissions.php 100644 → 100755
Empty file.
Empty file modified Sources/ManagePosts.php 100644 → 100755
Empty file.
Empty file modified Sources/ManageRegistration.php 100644 → 100755
Empty file.
Empty file modified Sources/ManageScheduledTasks.php 100644 → 100755
Empty file.
Empty file modified Sources/ManageSearch.php 100644 → 100755
Empty file.
Empty file modified Sources/ManageSearchEngines.php 100644 → 100755
Empty file.
Empty file modified Sources/ManageServer.php 100644 → 100755
Empty file.
Empty file modified Sources/ManageSettings.php 100644 → 100755
Empty file.
Empty file modified Sources/ManageSmileys.php 100644 → 100755
Empty file.
Empty file modified Sources/Memberlist.php 100644 → 100755
Empty file.
Empty file modified Sources/MessageIndex.php 100644 → 100755
Empty file.
Empty file modified Sources/ModerationCenter.php 100644 → 100755
Empty file.
Empty file modified Sources/Modlog.php 100644 → 100755
Empty file.
Empty file modified Sources/MoveTopic.php 100644 → 100755
Empty file.
Empty file modified Sources/News.php 100644 → 100755
Empty file.
Empty file modified Sources/Notify.php 100644 → 100755
Empty file.
Empty file modified Sources/PackageGet.php 100644 → 100755
Empty file.
Empty file modified Sources/Packages.php 100644 → 100755
Empty file.
Empty file modified Sources/PersonalMessage.php 100644 → 100755
Empty file.
Empty file modified Sources/Poll.php 100644 → 100755
Empty file.
Empty file modified Sources/Post.php 100644 → 100755
Empty file.
Empty file modified Sources/PostModeration.php 100644 → 100755
Empty file.
Empty file modified Sources/Printpage.php 100644 → 100755
Empty file.
Empty file modified Sources/Profile-Actions.php 100644 → 100755
Empty file.
Empty file modified Sources/Profile-Modify.php 100644 → 100755
Empty file.
Empty file modified Sources/Profile-View.php 100644 → 100755
Empty file.
Empty file modified Sources/Profile.php 100644 → 100755
Empty file.
Empty file modified Sources/QueryString.php 100644 → 100755
Empty file.
Empty file modified Sources/Recent.php 100644 → 100755
Empty file.
Empty file modified Sources/Register.php 100644 → 100755
Empty file.
Empty file modified Sources/Reminder.php 100644 → 100755
Empty file.
Empty file modified Sources/RemoveTopic.php 100644 → 100755
Empty file.
Empty file modified Sources/RepairBoards.php 100644 → 100755
Empty file.
Empty file modified Sources/Reports.php 100644 → 100755
Empty file.
Empty file modified Sources/ScheduledTasks.php 100644 → 100755
Empty file.
Empty file modified Sources/Search.php 100644 → 100755
Empty file.
Empty file modified Sources/SearchAPI-Custom.php 100644 → 100755
Empty file.
Empty file modified Sources/SearchAPI-Fulltext.php 100644 → 100755
Empty file.
Empty file modified Sources/SearchAPI-Standard.php 100644 → 100755
Empty file.
Empty file modified Sources/Security.php 100644 → 100755
Empty file.
Empty file modified Sources/SendTopic.php 100644 → 100755
Empty file.
Empty file modified Sources/Session.php 100644 → 100755
Empty file.
Empty file modified Sources/SplitTopics.php 100644 → 100755
Empty file.
Empty file modified Sources/Stats.php 100644 → 100755
Empty file.
Empty file modified Sources/Subs-Admin.php 100644 → 100755
Empty file.
Empty file modified Sources/Subs-Auth.php 100644 → 100755
Empty file.
Empty file modified Sources/Subs-BoardIndex.php 100644 → 100755
Empty file.
Empty file modified Sources/Subs-Boards.php 100644 → 100755
Empty file.
Empty file modified Sources/Subs-Calendar.php 100644 → 100755
Empty file.
Empty file modified Sources/Subs-Categories.php 100644 → 100755
Empty file.
Empty file modified Sources/Subs-Charset.php 100644 → 100755
Empty file.
Empty file modified Sources/Subs-Compat.php 100644 → 100755
Empty file.
Empty file modified Sources/Subs-Db-mysql.php 100644 → 100755
Empty file.
Empty file modified Sources/Subs-Db-postgresql.php 100644 → 100755
Empty file.
Empty file modified Sources/Subs-Db-sqlite.php 100644 → 100755
Empty file.
Empty file modified Sources/Subs-Editor.php 100644 → 100755
Empty file.
Empty file modified Sources/Subs-Graphics.php 100644 → 100755
Empty file.
Empty file modified Sources/Subs-List.php 100644 → 100755
Empty file.
Empty file modified Sources/Subs-Membergroups.php 100644 → 100755
Empty file.
Empty file modified Sources/Subs-Members.php 100644 → 100755
Empty file.
Empty file modified Sources/Subs-MembersOnline.php 100644 → 100755
Empty file.
Empty file modified Sources/Subs-Menu.php 100644 → 100755
Empty file.
Empty file modified Sources/Subs-MessageIndex.php 100644 → 100755
Empty file.
Empty file modified Sources/Subs-OpenID.php 100644 → 100755
Empty file.
Empty file modified Sources/Subs-Package.php 100644 → 100755
Empty file.
Empty file modified Sources/Subs-Post.php 100644 → 100755
Empty file.
Empty file modified Sources/Subs-Recent.php 100644 → 100755
Empty file.
Empty file modified Sources/Subs-Sound.php 100644 → 100755
Empty file.
3 changes: 3 additions & 0 deletions Sources/Subs.php 100644 → 100755
Expand Up @@ -341,6 +341,9 @@ function updateMemberData($members, $data)
$knownFloats = array(
'time_offset',
);

// Allow mods access for knownInts and knownFloats
call_integration_hook('integrate_known_numbers', array(&$knownInts, &$knownFloats));

$setString = '';
foreach ($data as $var => $val)
Expand Down
Empty file modified Sources/Subscriptions-PayPal.php 100644 → 100755
Empty file.
Empty file modified Sources/Themes.php 100644 → 100755
Empty file.
Empty file modified Sources/Topic.php 100644 → 100755
Empty file.
Empty file modified Sources/ViewQuery.php 100644 → 100755
Empty file.
Empty file modified Sources/Who.php 100644 → 100755
Empty file.
Empty file modified Sources/Xml.php 100644 → 100755
Empty file.
Empty file modified Sources/index.php 100644 → 100755
Empty file.
Empty file modified Themes/READ_ME.txt 100644 → 100755
Empty file.
Empty file modified Themes/default/Admin.template.php 100644 → 100755
Empty file.
Empty file modified Themes/default/BoardIndex.template.php 100644 → 100755
Empty file.
Empty file modified Themes/default/Calendar.template.php 100644 → 100755
Empty file.
Empty file modified Themes/default/Compat.template.php 100644 → 100755
Empty file.
Empty file modified Themes/default/Display.template.php 100644 → 100755
Empty file.
Empty file modified Themes/default/Errors.template.php 100644 → 100755
Empty file.
Empty file modified Themes/default/GenericControls.template.php 100644 → 100755
Empty file.
Empty file modified Themes/default/GenericList.template.php 100644 → 100755
Empty file.
Empty file modified Themes/default/GenericMenu.template.php 100644 → 100755
Empty file.
Empty file modified Themes/default/Help.template.php 100644 → 100755
Empty file.
Empty file modified Themes/default/Login.template.php 100644 → 100755
Empty file.
Empty file modified Themes/default/ManageAttachments.template.php 100644 → 100755
Empty file.
Empty file modified Themes/default/ManageBans.template.php 100644 → 100755
Empty file.
Empty file modified Themes/default/ManageBoards.template.php 100644 → 100755
Empty file.
Empty file modified Themes/default/ManageCalendar.template.php 100644 → 100755
Empty file.
Empty file modified Themes/default/ManageLanguages.template.php 100644 → 100755
Empty file.
Empty file modified Themes/default/ManageMail.template.php 100644 → 100755
Empty file.
Empty file modified Themes/default/ManageMaintenance.template.php 100644 → 100755
Empty file.
Empty file modified Themes/default/ManageMembergroups.template.php 100644 → 100755
Empty file.
Empty file modified Themes/default/ManageMembers.template.php 100644 → 100755
Empty file.
Empty file modified Themes/default/ManageNews.template.php 100644 → 100755
Empty file.
Empty file modified Themes/default/ManagePaid.template.php 100644 → 100755
Empty file.
Empty file modified Themes/default/ManagePermissions.template.php 100644 → 100755
Empty file.
Empty file modified Themes/default/ManageScheduledTasks.template.php 100644 → 100755
Empty file.
Empty file modified Themes/default/ManageSearch.template.php 100644 → 100755
Empty file.
Empty file modified Themes/default/ManageSmileys.template.php 100644 → 100755
Empty file.
Empty file modified Themes/default/Memberlist.template.php 100644 → 100755
Empty file.
Empty file modified Themes/default/MessageIndex.template.php 100644 → 100755
Empty file.
Empty file modified Themes/default/ModerationCenter.template.php 100644 → 100755
Empty file.
Empty file modified Themes/default/MoveTopic.template.php 100644 → 100755
Empty file.
Empty file modified Themes/default/Notify.template.php 100644 → 100755
Empty file.
Empty file modified Themes/default/Packages.template.php 100644 → 100755
Empty file.
Empty file modified Themes/default/PersonalMessage.template.php 100644 → 100755
Empty file.
Empty file modified Themes/default/Poll.template.php 100644 → 100755
Empty file.
Empty file modified Themes/default/Post.template.php 100644 → 100755
Empty file.
Empty file modified Themes/default/Printpage.template.php 100644 → 100755
Empty file.
Empty file modified Themes/default/Profile.template.php 100644 → 100755
Empty file.
Empty file modified Themes/default/Recent.template.php 100644 → 100755
Empty file.
Empty file modified Themes/default/Register.template.php 100644 → 100755
Empty file.
Empty file modified Themes/default/Reminder.template.php 100644 → 100755
Empty file.
Empty file modified Themes/default/Reports.template.php 100644 → 100755
Empty file.
Empty file modified Themes/default/Search.template.php 100644 → 100755
Empty file.
Empty file modified Themes/default/SendTopic.template.php 100644 → 100755
Empty file.
Empty file modified Themes/default/Settings.template.php 100644 → 100755
Empty file.
Empty file modified Themes/default/SplitTopics.template.php 100644 → 100755
Empty file.
Empty file modified Themes/default/Stats.template.php 100644 → 100755
Empty file.
Empty file modified Themes/default/Themes.template.php 100644 → 100755
Empty file.
Empty file modified Themes/default/Who.template.php 100644 → 100755
Empty file.
Empty file modified Themes/default/Wireless.template.php 100644 → 100755
Empty file.
Empty file modified Themes/default/Xml.template.php 100644 → 100755
Empty file.
Empty file modified Themes/default/css/admin.css 100644 → 100755
Empty file.
Empty file modified Themes/default/css/editor.css 100644 → 100755
Empty file.
Empty file modified Themes/default/css/editor_ie.css 100644 → 100755
Empty file.
Empty file modified Themes/default/css/ie6.css 100644 → 100755
Empty file.
Empty file modified Themes/default/css/ie7.css 100644 → 100755
Empty file.
Empty file modified Themes/default/css/index.css 100644 → 100755
Empty file.
Empty file modified Themes/default/css/index.php 100644 → 100755
Empty file.
Empty file modified Themes/default/css/install.css 100644 → 100755
Empty file.
Empty file modified Themes/default/css/report.css 100644 → 100755
Empty file.
Empty file modified Themes/default/css/rtl.css 100644 → 100755
Empty file.
Empty file modified Themes/default/css/webkit.css 100644 → 100755
Empty file.
Empty file modified Themes/default/css/wireless.css 100644 → 100755
Empty file.
Empty file modified Themes/default/fonts/Candice.gdf 100644 → 100755
Empty file.
Empty file modified Themes/default/fonts/Candice/a.gif 100644 → 100755
Empty file modified Themes/default/fonts/Candice/b.gif 100644 → 100755
Empty file modified Themes/default/fonts/Candice/c.gif 100644 → 100755
Empty file modified Themes/default/fonts/Candice/d.gif 100644 → 100755
Empty file modified Themes/default/fonts/Candice/e.gif 100644 → 100755
Empty file modified Themes/default/fonts/Candice/f.gif 100644 → 100755
Empty file modified Themes/default/fonts/Candice/g.gif 100644 → 100755
Empty file modified Themes/default/fonts/Candice/h.gif 100644 → 100755
Empty file modified Themes/default/fonts/Candice/i.gif 100644 → 100755
Empty file modified Themes/default/fonts/Candice/index.php 100644 → 100755
Empty file.
Empty file modified Themes/default/fonts/Candice/j.gif 100644 → 100755
Empty file modified Themes/default/fonts/Candice/k.gif 100644 → 100755
Empty file modified Themes/default/fonts/Candice/l.gif 100644 → 100755
Empty file modified Themes/default/fonts/Candice/m.gif 100644 → 100755
Empty file modified Themes/default/fonts/Candice/n.gif 100644 → 100755
Empty file modified Themes/default/fonts/Candice/o.gif 100644 → 100755

0 comments on commit 22b4fad

Please sign in to comment.