phone version of tinymce text editor is limited?
Using Jamroom
That doesn't make sense.
--
I'm logged in as 'Chifmunk' on pennywhistle and do see the editor in the iPhone 8 simulator. Screenshot
...... disable_override=true}
// Block a User
if ($_post['mode'] == 'b') {
jrUser_block($uid);
}
else {
// UN-blocking a user
jrUser_unblock($uid);
}
// When blocking a user we set BOTH user and profile inactive and remove any sessions
jrCore_db_update_item('jrUser', $uid, array('user_active' => 0, 'user_blocked' => 1));
// Delete existing session and login cookie
jrUser_session_remove($uid);
$tbl = jrCore_db_table_name('jrUser', 'cookie');
$req = "DELETE FROM {$tbl} WHERE cookie_user_id = '{$uid}'";
jrCore_db_query($req);
// Next - we need to get ALL profiles this user is linked to abd block the profiles
$_pr = jrProfile_get_user_linked_profiles($uid);
if ($_pr && is_array($_pr)) {
foreach ($_pr as $pid => $user_id) {
jrCore_db_update_item('jrProfile', $pid, array('profile_active' => 0));
jrProfile_reset_cache($pid);
}
}
// UN-blocking a user
jrCore_db_update_item('jrUser', $uid, array('user_active' => 1));
jrCore_db_delete_item_key('jrUser', $uid, 'user_blocked');
// Next - we need to get ALL profiles this user is linked to abd block the profiles
$_pr = jrProfile_get_user_linked_profiles($uid);
if ($_pr && is_array($_pr)) {
foreach ($_pr as $pid => $user_id) {
jrCore_db_update_item('jrProfile', $pid, array('profile_active' => 1));
jrProfile_reset_cache($pid);
}
}
profile_view_jrComment_23()
'profile_data'