Overview
Comment:Fix call to non-existing function when one of the templates is not a text file
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk | stable
Files: files | file ages | folders
SHA3-256: 0606ed2e81a2891f2ad3f13b99e94724cc6203f69a7df5395431551a5fea1d6b
User & Date: bohwaz on 2021-05-26 22:02:20
Other Links: manifest | tags
Context
2021-05-27
02:27
Fix [d1f6c5922dc4e40f0e6c8217fd87f4742cdac478] : show "cannot create directory" alert only if user can also upload check-in: 19174e889e user: bohwaz tags: trunk, stable
2021-05-26
22:02
Fix call to non-existing function when one of the templates is not a text file check-in: 0606ed2e81 user: bohwaz tags: trunk, stable
21:53
Add alert message when category is empty check-in: bc619cd11c user: bohwaz tags: trunk, stable
Changes

Modified src/include/lib/Garradin/Web/Skeleton.php from [f4f75cf9cf] to [64158a59b8].

122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
			}

			$ut->assignArray($params);

			$ut->display();
		}
		elseif ($this->file) {
			$this->file->display();
		}
		else {
			readfile($this->defaultPath());
		}
	}

	public function exists()







|







122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
			}

			$ut->assignArray($params);

			$ut->display();
		}
		elseif ($this->file) {
			echo $this->file->fetch();
		}
		else {
			readfile($this->defaultPath());
		}
	}

	public function exists()