Inne rozwiazanie mi nie dzialaja (php 7.3.4).
s:dlugosc stringa:\"nazwa stringa" (oryginal) w bazie nie wystepuje. Wiec nie moge tego zamienic na odpowiednia dlugosc nowego stringa - juz probowalem.
blad
"Notice: unserialize(): Error at offset 2080 of 3676 bytes in views_db_object->load_row() (line 2307 of..."
z tego co widze w bazie kieruje do
('views_db_object', 'class', 'sites/all/modules/views/includes/view.inc', 'views', 10),
czyli
INSERT INTO `registry` (`name`, `type`, `filename`, `module`, `weight`) VALUES
jak podgladam tabele 'registry' to jak mam tam ten offset wyciagnac? - offset 2080 of 3676 bytes
EDIT: dokopalem sie tylko do kodu modulu:
/**
* Load the object with a row from the database.
*
* This method is separate from the constructor in order to give us more
* flexibility in terms of how the view object is built in different contexts.
*
* @param object $data
* An object from db_fetch_object. It should contain all of the fields
* that are in the schema.
*/
public function load_row($data) {
$schema = drupal_get_schema($this->db_table);
// Go through our schema and build correlations.
foreach ($schema['fields'] as $field => $info) {
$this->$field = empty($info['serialize']) ?
$data->$field : unserialize($data->$field); }
}